带有jQuery的紧凑新闻预览器

2023-11-04 04:30

本文主要是介绍带有jQuery的紧凑新闻预览器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

newspreviewer
View demo 查看演示 Download Source 下载源

Today we will create a news previewer that let’s you show your latest articles or news in a compact way. The news previewer will show some list of articles on the left side and the preview of the article with a longer description on the right. Once a news on the left is clicked, the preview will slide in.

今天,我们将创建一个新闻预览器,让您以紧凑的方式显示您的最新文章或新闻。 新闻预览器将在左侧显示一些文章列表,并在右侧显示带有较长说明的文章预览。 单击左侧的新闻后,预览将滑入。

Let’s start with the markup.

让我们从标记开始。

标记 (The Markup)

We will have a main container “cn_wrapper” that will contain a right element with the class “cn_preview” and a left one with the class “cn_list”. The preview div will contain content elements. Each one of them contains a preview image, a title and description along with some spans and a link to the real article. In the list on the left side we will have the according short description items. We will also add a navigation for stepping through the pages in the end of that container:

我们将有一个主容器“ cn_wrapper”,其中将包含一个右侧类的元素“ cn_preview”和一个左侧类的容器“ cn_list”。 预览div将包含内容元素。 其中的每一个都包含预览图像,标题和说明以及一些跨度以及指向真实文章的链接。 在左侧的列表中,我们将提供相应的简短说明。 我们还将在该容器的末尾添加用于单步浏览页面的导航:

<div class="cn_wrapper">
<div id="cn_preview" class="cn_preview">
<div class="cn_content" style="top:5px;">
<img src="images/polaroidphotobar.jpg" alt=""/>
<h1>Polaroid Photobar Gallery with jQuery</h1>
<span class="cn_date">28/09/2010</span>
<span class="cn_category">Tutorials</span>
<p>In this tutorial we are going to create an...</p>
<a href="http://tympanus.net/codrops/2010/09/28/polaroid-photobar-gallery/" target="_blank" class="cn_more">Read more</a>
</div>
<div class="cn_content">
<img src="images/fullpageimagegallery.jpg" alt=""/>
<h1>Full Page Image Gallery with jQuery</h1>
<span class="cn_date">08/09/2010</span>
<span class="cn_category">Tutorials</span>
<p>In this tutorial we are going to create a stunning...
</p>
<a href="http://tympanus.net/codrops/2010/09/08/full-page-image-gallery/" target="_blank" class="cn_more">Read more</a>
</div>
...
</div>
<div id="cn_list" class="cn_list">
<div class="cn_page" style="display:block;">
<div class="cn_item selected">
<h2>Polaroid Photobar Gallery with jQuery</h2>
<p>Tutorial on how to create a gallery in polaroid style</p>
</div>
<div class="cn_item">
<h2>Full Page Image Gallery with jQuery</h2>
<p>Another tutorial on how to make a full gallery</p>
</div>
...
</div>
<div class="cn_page">
...
</div>
<div class="cn_page">
...
</div>
<div class="cn_nav">
<a id="cn_prev" class="cn_prev disabled"></a>
<a id="cn_next" class="cn_next"></a>
</div>
</div>
</div>

The first content item in the preview container will have already the style of being slided in, namely the position of top 5 pixels. All the other previews are “hidden” because they will have a top of 310 pixels.

预览容器中的第一个内容项将已经具有滑入的样式,即前5个像素的位置。 所有其他预览均被“隐藏”,因为它们的顶部为310像素。

The items list will be divided into pages where each page contains at most 5 item.

项目列表将分为几页,每页最多包含5个项目。

Let’s take a look at the style.

让我们看一下样式。

CSS (The CSS)

We will use a lot of CSS3 properties to create some neat effects. We will use shadows, rounded borders and gradients with both RGB and hexadecimal values.

我们将使用许多CSS3属性来创建一些整洁的效果。 我们将同时使用带有RGB和十六进制值的阴影,圆角边框和渐变。

Let’s start with the main container. We will set it relative so that we can then use some absolute positioning inside of it:

让我们从主容器开始。 我们将其设置为相对,以便可以在其中使用一些绝对定位:

.cn_wrapper{
margin:90px auto 0px auto;
width:500px;
height:300px;
position:relative;
color:#fff;
overflow:hidden;
padding:5px;
text-shadow:1px 1px 1px #000;
border:1px solid #111;
background-color:#333;
-moz-box-shadow:1px 1px 4px #222;
-webkit-box-shadow:1px 1px 4px #222;
box-shadow:1px 1px 4px #222;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}

The headings inside of our viewer will have the following style:

查看器内部的标题将具有以下样式:

.cn_wrapper h1{
font-size:20px;
text-transform:uppercase;
}
.cn_wrapper h2{
font-size:12px;
border-bottom:1px solid #000;
padding-bottom:4px;
text-transform:uppercase;
}

The h2 is used in the preview list and we give it a bottom border to create a nice engraved line under it. This will work because we will give the p that follows it a top border with a lighter color.

在预览列表中使用了h2,我们为它提供了一个底边框,可在其下方创建漂亮的雕刻线。 这将起作用,因为我们将跟随其后的p带一个较浅颜色的顶部边框。

The preview and the list will both be positioned absolute, so we will first define the common style and then we overwrite the left for the preview:

预览和列表都将放置在绝对位置,因此我们将首先定义通用样式,然后覆盖预览的左侧:

.cn_preview, .cn_list{
width:250px;
height:300px;
position:absolute;
top:2px;
left:6px;
}
.cn_preview{
left:255px;
}

Inside of the preview we will have several content elements that will be styled as follows:

在预览内部,我们将有几个内容元素,其样式如下:

.cn_content{
border:1px solid #444;
top:310px;/*5*/
left:5px;
width:219px;
padding:10px;
position:absolute;
background-color:#101010;
height:275px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}

These elements will be animated in the JavaScript. Initially, we want to hide them, so we set a top that is bigger than the whole wrapper itself. This is why we set the overflow of the wrapper as hidden, so that we will not see anything that moves out of the boundaries of the wrapper.

这些元素将在JavaScript中进行动画处理。 最初,我们要隐藏它们,因此我们设置的顶部大于整个包装器本身。 这就是为什么我们将包装器的溢出设置为隐藏的原因,这样我们就不会看到任何超出包装器边界的东西。

Now we will style the elements inside of the content div. The image will always have the maximum width of 215 pixels in our case. Note that if you have differently sized images, you will have to adapt all the elements under it as well. In this case the image will have the height of 119 pixels. That’s the value we will base all the following elements’ heights on.

现在,我们将在内容div中设置元素的样式。 在我们的案例中,图片的最大宽度始终为215像素。 请注意,如果图像大小不同,则还必须调整其下的所有元素。 在这种情况下,图像的高度将为119像素。 这就是我们将以下所有元素的高度作为基础的价值。

.cn_content img{
width:215px;
-moz-box-shadow:1px 1px 4px #000;
-webkit-box-shadow:1px 1px 4px #000;
box-shadow:1px 1px 4px #000;
}

The date and the category will be positioned absolutely at the bottom of the content div:

日期和类别将绝对位于内容div的底部:

.cn_date{
position:absolute;
bottom:30px;
right:8px;
font-size:11px;
}
.cn_category{
position:absolute;
bottom:30px;
left:8px;
font-size:11px;
padding:1px 3px;
background:#ccc;
border:1px solid #ddd;
color:#000;
text-shadow:-1px 0px 1px #fff;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}

The description, which is a p element will have a fixed height and if it is longer, it will be cut off:

描述是ap元素,具有固定的高度,如果更长,则将其切除:

.cn_content p{
height:57px;
margin-top:2px;
overflow:hidden;
}

The more button which will be the link to the original article will be spiced up with some gradient, a box shadow and rounded borders at the bottom left and right to fit the content:

更多按钮(将链接到原始文章)将使用一些渐变,框阴影和左下和右下的圆形边框进行修饰,以适合内容:

a.cn_more{
position:absolute;
padding: 4px 0px;
left:0px;
bottom:0px;
width:236px;
color:#fff;
text-align:center;
font-size:12px;
letter-spacing:1px;
text-shadow:1px 1px 1px #011c44;
text-transform:uppercase;
text-decoration: none;
border:1px solid #4c7ecb;
outline:none;
cursor:pointer;
background-color: #1951A5;
background-image:
-moz-linear-gradient(
top,
rgba(255,255,255,0.25),
rgba(255,255,255,0.05)
);
background-image:
-webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgba(255,255,255,0.25)),
color-stop(1, rgba(255,255,255,0.05))
);
-moz-border-radius: 0px 0px 5px 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-border-bottom-left-radius: 5px;
-border-bottom-right-radius: 5px;
-moz-box-shadow:1px 1px 3px #111;
-webkit-box-shadow:1px 1px 3px #111;
box-shadow:1px 1px 3px #111;
}

Changing the color of the font on hover will create a nice engraved effect:

更改悬停时字体的颜色会产生很好的雕刻效果:

a.cn_more:hover{
color: #011c44;
text-shadow: 1px 1px 1px #ccdffc;
}

Now we will style the items in the list. They will have a gradient as background which will change on hover. We will also apply the hover effect on the selected item.

现在,我们将样式化列表中的项目。 它们将具有作为背景的渐变,该渐变会在悬停时发生变化。 我们还将对所选项目应用悬停效果。

.cn_item{
border:1px solid #090909;
cursor:pointer;
position:relative;
overflow:hidden;
height:49px;
color:#fff;
padding:5px;
margin:6px 5px 0px 0px;
text-shadow:1px 1px 1px #000;
background:#2b2b2b;
background:
-webkit-gradient(
linear,
left top,
left bottom,
from(#171717),
to(#2b2b2b)
);
background:
-moz-linear-gradient(
top,
#171717,
#2b2b2b
);
-moz-box-shadow:1px 1px 3px #111;
-webkit-box-shadow:1px 1px 3px #111;
box-shadow:1px 1px 3px #111;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
}
.cn_item:hover, .selected{
border-color:#4c7ecb;
background-color: #1951A5;
background-image:
-moz-linear-gradient(
top,
rgba(255,255,255,0.25),
rgba(255,255,255,0.05)
);
background-image:
-webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, rgba(255,255,255,0.25)),
color-stop(1, rgba(255,255,255,0.05))
);
}

The engraved line under the heading will also change color:

标题下的雕刻线也会更改颜色:

.cn_item:hover h2,
.cn_list .selected h2,
.cn_item:active h2{
border-color:#2C5FAC;
}
.cn_item:hover p,
.cn_list .selected p,
.cn_item:active p{
border-color:#527CBB;
}

The active pseudo class, i.e. when we click on an item will have an engraved text effect by using the following style:

活动伪类,即当我们单击某个项目时,将使用以下样式来产生雕刻文字效果:

.cn_item:active {
color: #011c44;
text-shadow: 1px 1px 1px #ccdffc;
}

The short description in a list item will have a fixed height and a top border which, together with the bottom border of the h2 will create an engraved looking line:

列表项中的简短描述将具有固定的高度和顶部边框,顶部边框与h2的底部边框一起将创建一个雕刻的外观线:

.cn_list p{
height:29px;
padding-top:2px;
overflow:hidden;
border-top:1px solid #333;
}

Let’s style the navigation now. We will set it absolutely at the bottom of our list container:

让我们现在为导航设置样式。 我们将其绝对设置在列表容器的底部:

.cn_nav{
width:55px;
height:24px;
position:absolute;
bottom:0px;
left:94px;
}

The next and previous elements will have the following common style:

下一个和上一个元素将具有以下通用样式:

a.cn_next, a.cn_prev{
float:left;
height:23px;
width:23px;
background-color:#212121;
background-repeat:no-repeat;
background-position:center center;
cursor:pointer;
outline:none;
border:1px solid #111;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}

Now we just set the individual styles which are the background images:

现在,我们只设置各个样式,即背景图像:

a.cn_next{
background-image:url(../images/next.png);
}
a.cn_prev{
margin-right:5px;
background-image:url(../images/prev.png);
}

On hover we just change the background color:

悬停时,我们只需更改背景颜色:

.cn_nav a:hover{
background-color:#101010;
}

When we click on a navigation item, we will move it down 1 pixel, so that it looks pressed. That we can do by setting the margin top to 1 pixel:

当我们单击一个导航项时,我们会将其向下移动1个像素,以使其看起来处于按下状态。 我们可以通过将边距顶部设置为1像素来做到这一点:

.cn_nav a:active{
margin-top:1px;
background-color:#000;
}

An inactive navigation element will have an opacity of 0.5:

无效的导航元素的不透明度为0.5:

.cn_nav a.disabled{
opacity:0.5;
}

The last thing that we need to define is that the pages of the list are not visible. We will then make them visible in the JavaScript:

我们需要定义的最后一件事是列表的页面不可见。 然后,我们将使它们在JavaScript中可见:

.cn_page{
display:none;
}

That was the style. Now, let’s add the effects with jQuery!

那就是风格。 现在,让我们使用jQuery添加效果!

JavaScript (The JavaScript)

For the effects we will be using some easing so don’t forget to include the the jQuery easing plugin. In our jQuery function we will start by defining some variables:

为了获得效果,我们将使用一些缓动,所以不要忘记包括jQuery缓动插件。 在我们的jQuery函数中,我们将从定义一些变量开始:

//caching
//next and prev buttons
var $cn_next	= $('#cn_next');
var $cn_prev	= $('#cn_prev');
//wrapper of the left items
var $cn_list 	= $('#cn_list');
var $pages		= $cn_list.find('.cn_page');
//how many pages
var cnt_pages	= $pages.length;
//the default page is the first one
var page		= 1;
//list of news (left items)
var $items 		= $cn_list.find('.cn_item');
//the current item being viewed (right side)
var $cn_preview = $('#cn_preview');
//index of the item being viewed.
//the default is the first one
var current		= 1;

For each item we store its index relative to all the document. We bind a click event that slides the current or clicked item up or down. Depending on the current item (if it comes before or after the newly clicked one), the clicked one will be moving from up or down:

对于每个项目,我们存储其相对于所有文档的索引。 我们绑定一个单击事件,该事件使当前或单击的项目向上或向下滑动。 根据当前项目(如果它在新单击的项目之前或之后),被单击的项目将上下移动:

$items.each(function(i){
var $item = $(this);
$item.data('idx',i+1);$item.bind('click',function(){
var $this 		= $(this);
$cn_list.find('.selected').removeClass('selected');
$this.addClass('selected');
var idx			= $(this).data('idx');
var $current 	= $cn_preview.find('.cn_content:nth-child('+current+')');
var $next		= $cn_preview.find('.cn_content:nth-child('+idx+')');if(idx > current){
$current.stop()
.animate({
'top':'-300px'
},600,'easeOutBack',function(){
$(this).css({'top':'310px'});
});
$next.css({
'top':'310px'
}).stop()
.animate({
'top':'5px'
},600,'easeOutBack');
}
else if(idx < current){
$current.stop()
.animate({
'top':'310px'
},600,'easeOutBack',function(){
$(this).css({'top':'310px'});
});
$next.css({
'top':'-300px'
}).stop()
.animate({
'top':'5px'
},600,'easeOutBack');
}
current = idx;
});
});

Now we will define what happens when we click on the next in the navigation. The next page should fade in if it exists and the button needs to get disabled if there is no next page:

现在,我们将定义当单击导航中的下一个时发生的情况。 如果存在下一页,则应淡入,如果没有下一页,则需要禁用该按钮:

$cn_next.bind('click',function(e){
var $this = $(this);
$cn_prev.removeClass('disabled');
++page;
if(page == cnt_pages)
$this.addClass('disabled');
if(page > cnt_pages){
page = cnt_pages;
return;
}
$pages.hide();
$cn_list.find('.cn_page:nth-child('+page+')').fadeIn();
e.preventDefault();
});

The same holds for the previous page:

前一页的内容相同:

$cn_prev.bind('click',function(e){
var $this = $(this);
$cn_next.removeClass('disabled');
--page;
if(page == 1)
$this.addClass('disabled');
if(page < 1){
page = 1;
return;
}
$pages.hide();
$cn_list.find('.cn_page:nth-child('+page+')').fadeIn();
e.preventDefault();
});

To give the whole thing an even nicer look, we will cufonize the headings, by adding the following lines to the header of the HTML:

为了使整个外观更好看,我们将在HTML的标题中添加以下几行,以简化标题:

<script src="js/cufon-yui.js" type="text/javascript"></script>
<script src="js/Bebas_400.font.js" type="text/javascript"></script>
<script type="text/javascript">
Cufon('.cn_wrapper h1,h2', {
textShadow: '-1px 1px black'
});
</script>

And that’s it! We hope you enjoyed this tutorial and found it useful!!

就是这样! 我们希望您喜欢本教程并发现它有用!!

comptia a+ training to help you pass CompTIA的A +培训,你通过帮助 ccie and CCIE和 ccsp exam and lean jQuery and css to improve your web page accessibility. CCSP考试和精益jQuery和CSS来改善自己的网页可访问性。

翻译自: https://tympanus.net/codrops/2010/10/03/compact-news-previewer/

这篇关于带有jQuery的紧凑新闻预览器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/343234

相关文章

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali

浅析CSS 中z - index属性的作用及在什么情况下会失效

《浅析CSS中z-index属性的作用及在什么情况下会失效》z-index属性用于控制元素的堆叠顺序,值越大,元素越显示在上层,它需要元素具有定位属性(如relative、absolute、fi... 目录1. z-index 属性的作用2. z-index 失效的情况2.1 元素没有定位属性2.2 元素处

Python实现html转png的完美方案介绍

《Python实现html转png的完美方案介绍》这篇文章主要为大家详细介绍了如何使用Python实现html转png功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 1.增强稳定性与错误处理建议使用三层异常捕获结构:try: with sync_playwright(

Vue 调用摄像头扫描条码功能实现代码

《Vue调用摄像头扫描条码功能实现代码》本文介绍了如何使用Vue.js和jsQR库来实现调用摄像头并扫描条码的功能,通过安装依赖、获取摄像头视频流、解析条码等步骤,实现了从开始扫描到停止扫描的完整流... 目录实现步骤:代码实现1. 安装依赖2. vue 页面代码功能说明注意事项以下是一个基于 Vue.js

CSS @media print 使用详解

《CSS@mediaprint使用详解》:本文主要介绍了CSS中的打印媒体查询@mediaprint包括基本语法、常见使用场景和代码示例,如隐藏非必要元素、调整字体和颜色、处理链接的URL显示、分页控制、调整边距和背景等,还提供了测试方法和关键注意事项,并分享了进阶技巧,详细内容请阅读本文,希望能对你有所帮助...

Nginx实现前端灰度发布

《Nginx实现前端灰度发布》灰度发布是一种重要的策略,它允许我们在不影响所有用户的情况下,逐步推出新功能或更新,通过灰度发布,我们可以测试新版本的稳定性和性能,下面就来介绍一下前端灰度发布的使用,感... 目录前言一、基于权重的流量分配二、基于 Cookie 的分流三、基于请求头的分流四、基于请求参数的分

基于Canvas的Html5多时区动态时钟实战代码

《基于Canvas的Html5多时区动态时钟实战代码》:本文主要介绍了如何使用Canvas在HTML5上实现一个多时区动态时钟的web展示,通过Canvas的API,可以绘制出6个不同城市的时钟,并且这些时钟可以动态转动,每个时钟上都会标注出对应的24小时制时间,详细内容请阅读本文,希望能对你有所帮助...

HTML5 data-*自定义数据属性的示例代码

《HTML5data-*自定义数据属性的示例代码》HTML5的自定义数据属性(data-*)提供了一种标准化的方法在HTML元素上存储额外信息,可以通过JavaScript访问、修改和在CSS中使用... 目录引言基本概念使用自定义数据属性1. 在 html 中定义2. 通过 JavaScript 访问3.