jQuery实现带水平滑杆的焦点图动画插件
来源: 阅读:769 次 日期:2016-07-21 16:12:40
温馨提示: 小编为您整理了“jQuery实现带水平滑杆的焦点图动画插件”,方便广大网友查阅!

这是一款很实用的jQuery焦点图动画插件,跟其他jQuery焦点图插件不同的是,它带有一个水平的滑杆,你可以通过滑动滑杆实现图片的切换,也可以通过点击图片来切换。这款焦点图是纯jQuery实现的,兼容性和实用性都还可以,而且也比较简单,很容易集成到需要的项目中去。

效果展示如下所示:

名单

HTML代码

<div id="wrapper">

<ul id="flip">

<li title="The first image" ><img src="1.png" /></li>

<li title="A second image" ><img src="2.png" /></li>

<li title="This is the description" ><img src="5.png" /></li>

<li title="Another description" ><img src="4.png" /></li>

<li title="A title for the image" ><img src="3.png" /></li>

</ul>

<div id="scrollbar"></div>

</div>

CSS代码

.ui-jcoverflip {

position: relative;

}

.ui-jcoverflip--item {

position: absolute;

display: block;

}

/* Basic sample CSS */

#flip {

height: 200px;

width: 630px;

margin-bottom: 50px;

}

#flip .ui-jcoverflip--title {

position: absolute;

bottom: -30px;

width: 100%;

text-align: center;

color: #555;

}

#flip img {

display: block;

border: 0;

outline: none;

}

#flip a {

outline: none;

}

#wrapper {

height: 300px;

width: 630px;

overflow: hidden;

position: relative;

}

.ui-jcoverflip--item {

cursor: pointer;

}

body {

font-family: Arial, sans-serif;

width: 630px;

padding: 0;

margin: 0;

}

ul,

ul li {

margin: 0;

padding: 0;

display: block;

list-style-type: none;

}

#scrollbar {

position: absolute;

left: 20px;

right: 20px;

}

jQuery代码

jQuery( document ).ready( function(){

jQuery( '#flip' ).jcoverflip({

current: 2,

beforeCss: function( el, container, offset ){

return [

$.jcoverflip.animationElement( el, { left: ( container.width( )/2 - 210 - 110*offset + 20*offset )+'px', bottom: '20px' }, { } ),

$.jcoverflip.animationElement( el.find( 'img' ), { width: Math.max(10,100-20*offset*offset) + 'px' }, {} )

];

},

afterCss: function( el, container, offset ){

return [

$.jcoverflip.animationElement( el, { left: ( container.width( )/2 + 110 + 110*offset )+'px', bottom: '20px' }, { } ),

$.jcoverflip.animationElement( el.find( 'img' ), { width: Math.max(10,100-20*offset*offset) + 'px' }, {} )

];

},

currentCss: function( el, container ){

return [

$.jcoverflip.animationElement( el, { left: ( container.width( )/2 - 100 )+'px', bottom: 0 }, { } ),

$.jcoverflip.animationElement( el.find( 'img' ), { width: '200px' }, { } )

];

},

change: function(event, ui){

jQuery('#scrollbar').slider('value', ui.to*25);

}

});

jQuery('#scrollbar').slider({

value: 50,

stop: function(event, ui) {

if(event.originalEvent) {

var newVal = Math.round(ui.value/25);

jQuery( '#flip' ).jcoverflip( 'current', newVal );

jQuery('#scrollbar').slider('value', newVal*25);

}

}

});

});

以上代码是针对jQuery实现带水平滑杆的焦点图动画插件,希望对大家有所帮助!

更多信息请查看网络编程
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:
云南网警报警专用图标
Baidu
map