一款仿苹果样式的jquery图片播放插件【附源码】
还记得昨天给大家介绍的jquery和css3打造的桌面式图片浏览插件吧,相信它的设计和创意给了你耳目一新的感觉。好吧,今天我们继续来看看一款精美的jquery图片播放插件,这是一款基于jquery的仿苹果样式的图片播放插件,配置和使用都是相当简单,先一起来看看效果吧,免得到时候说我欺骗你们。
这正和苹果那种简单却又不乏时尚的风格相吻合,这款jquery图片播放插件非常适合放在你的首页上作为广告图片轮播组件。另外,我整理了一下该图片播放插件的源代码提供大家下载以便学习和交流。
HTML代码:
<div id="main"> <div id="gallery"> <div id="slides"> <div class="slide"><img src="img/sample_slides/macbook.jpg" width="920" height="400" /></div> <div class="slide"><img src="img/sample_slides/iphone.jpg" width="920" height="400" /></div> <div class="slide"><img src="img/sample_slides/imac.jpg" width="920" height="400" /></div> </div> <div id="menu"> <ul> <li class="fbar"> </li><li class="menuItem"><a href=""><img src="img/sample_slides/thumb_macbook.png" /></a></li> <li class="menuItem"><a href=""><img src="img/sample_slides/thumb_iphone.png" /></a></li> <li class="menuItem"><a href=""><img src="img/sample_slides/thumb_imac.png" /></a></li> </ul> </div> </div> </div>从这个HTML代码结构上来看,主要是两块,一块是主图片区(slides),用jpg格式的图片,另一块是缩略图区(menu),用png格式的图片,当然,图片格式你可以自己定,甚至你可以填充任意的html代码。但是请注意一点,在主图片区,你必须指定图片显示的宽度(width)和高度(height),因为jquery要根据这些值来决定主图片区的尺寸大小。
CSS代码:
body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label{
/* Page reset */
margin:0px;
padding:0px;
}
body{
/* Setting default text color, background and a font stack */
color:#444444;
font-size:13px;
background: #f2f2f2;
font-family:Arial, Helvetica, sans-serif;
}
/* Gallery styles */
#gallery{
/* CSS3 Box Shadow */
-moz-box-shadow:0 0 3px #AAAAAA;
-webkit-box-shadow:0 0 3px #AAAAAA;
box-shadow:0 0 3px #AAAAAA;
/* CSS3 Rounded Corners */
-moz-border-radius-bottomleft:4px;
-webkit-border-bottom-left-radius:4px;
border-bottom-left-radius:4px;
-moz-border-radius-bottomright:4px;
-webkit-border-bottom-right-radius:4px;
border-bottom-right-radius:4px;
border:1px solid white;
background:url(img/panel.jpg) repeat-x bottom center #ffffff;
/* The width of the gallery */
width:920px;
overflow:hidden;
}
#slides{
/* This is the slide area */
height:400px;
/* jQuery changes the width later on to the sum of the widths of all the slides. */
width:920px;
overflow:hidden;
}
.slide{
float:left;
}
#menu{
/* This is the container for the thumbnails */
height:45px;
}
ul{
margin:0px;
padding:0px;
}
li{
/* Every thumbnail is a li element */
width:60px;
display:inline-block;
list-style:none;
height:45px;
overflow:hidden;
}
li.inact:hover{
/* The inactive state, highlighted on mouse over */
background:url(img/pic_bg.png) repeat;
}
li.act,li.act:hover{
/* The active state of the thumb */
background:url(img/active_bg.png) no-repeat;
}
li.act a{
cursor:default;
}
.fbar{
/* The left-most vertical bar, next to the first thumbnail */
width:2px;
background:url(img/divider.png) no-repeat right;
}
li a{
display:block;
background:url(img/divider.png) no-repeat right;
height:35px;
padding-top:10px;
}
a img{
border:none;
}这个样式没什么特别,主要来控制图片播放插件的外观样式,这里用到了CSS3属性box-shadow和border-radius,在不支持CSS3的浏览器上就看不到阴影和圆角的效果了,不过这并不影响插件的使用效果。
javascript代码:
$(document).ready(function(){
/* This code is executed after the DOM has been completely loaded */
var totWidth=0;
var positions = new Array();
$('#slides .slide').each(function(i){
/* Loop through all the slides and store their accumulative widths in totWidth */
positions[i]= totWidth;
totWidth += $(this).width();
/* The positions array contains each slide's commulutative offset from the left part of the container */
if(!$(this).width())
{
alert("Please, fill in width & height for all your images!");
return false;
}
});
$('#slides').width(totWidth);
/* Change the cotnainer div's width to the exact width of all the slides combined */
$('#menu ul li a').click(function(e){
/* On a thumbnail click */
$('li.menuItem').removeClass('act').addClass('inact');
$(this).parent().addClass('act');
var pos = $(this).parent().prevAll('.menuItem').length;
$('#slides').stop().animate({marginLeft:-positions[pos]+'px'},450);
/* Start the sliding animation */
e.preventDefault();
/* Prevent the default action of the link */
});
$('#menu ul li.menuItem:first').addClass('act').siblings().addClass('inact');
/* On page load, mark the first thumbnail as active */
});其实就主要用到了jquery的动画效果,非常简单。
好了,不管你有没有看懂上面插件的代码,如果你有需要,那就下载来用用吧,能用才是王道:)点击下载源代码
Posted by
jQuery小子 @
2011-6-22 23:35:20
阅读(1423)
评论(1)
上一篇:jQuery中bind、live和delegate的区别
下一篇:如何用jquery解析json格式的数据
上一篇:jQuery中bind、live和delegate的区别
下一篇:如何用jquery解析json格式的数据
我也来参与讨论
你还可以输入600/600个字符
发表评论
回复 2011-6-25 10:06:09 by terry