jQuery手风琴图片滑动展开切换特效
jQuery手风琴图片滑动展开切换特效是一款仿游戏网站的鼠标经过的时候图片高亮滑动展开切换代码。
在线预览
资源均来自第三方,谨慎下载,前往第三方网站下载
js代码
<script type="text/javascript">
$(function(){
// 初始化 第一个 状态
jQuery('.dh ul li.curr').animate({width:'246px'},'slow');
jQuery('.dh ul li.curr .layer').animate({height:'60px'},'slow');
jQuery('.dh ul li.curr .layer .p1').animate({left:'-200%'},'slow');
jQuery('.dh ul li.curr .layer .p2').animate({right:'145px'},'slow');
jQuery('.sfq ul li').hover(function(){
// 获取索引
var _index = $(this).index();
$(this).addClass('curr')
.stop()
.animate({
width:'246px'
},'slow')
.siblings()
.stop()
.animate({
width:'108px'
},'slow')
.removeClass('curr');
$(this).find('.layer').stop().animate({height:'60px'},'slow').parent().siblings().find('.layer').stop().animate({
height: '100%'
},'slow');
$(this).find('.layer .p1').stop().animate({left:'-200%'},'slow').siblings('.p2').stop().animate({
right: '145px'
},'slow').parent().parent().siblings().find('.layer .p1').stop().animate({left:'10px'},'slow').siblings('.p2').stop().animate({
right: '-200%'
},'slow')
},function(){
//移出
})
});
</script>
在线预览
资源均来自第三方,谨慎下载,前往第三方网站下载
本站所有文章、数据、图片均来自互联网,一切版权均归源网站或源作者所有。
如果侵犯了你的权益请来信告知我们删除。邮箱:737597453@qq.com


