手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jQuery实现垂直半透明手风琴特效代码分享
jQuery实现垂直半透明手风琴特效代码分享
摘要:今天我们来分享一款基于jQuery的横向手风琴图片轮播焦点图特效源码。手风琴效果即图片一张张层叠在一起,鼠标滑过图片时即可展开完整的图片,这...

今天我们来分享一款基于jQuery的横向手风琴图片轮播焦点图特效源码。手风琴效果即图片一张张层叠在一起,鼠标滑过图片时即可展开完整的图片,这样的效果很常见,所以应用也很广泛,大家可以试试这款jQuery焦点图。

运行效果图:

---------------------------------效果演示 源码下载---------------------------------

jQuery实现垂直半透明手风琴特效代码分享1

为大家分享的jQuery半透明抽屉式手风琴代码如下

<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery半透明抽屉式手风琴代码</title> <style type="text/css"> *{margin:0;padding:0;list-style-type:none;} a,img{border:0;text-decoration:none;} body{font:12px/180% Arial, Helvetica, sans-serif, "新宋体";} .pic{width:1100px;height:430px;margin:70px auto 0;} .pic ul li{list-style:none;width:100px;height:429px;float:left;} .pic .l1{background-image:url(img/1.jpg);} .pic .l2{background-image:url(img/2.jpg);} .pic .l3{background-image:url(img/3.jpg);} .pic .l4{background-image:url(img/4.jpg);width:789px;} .txt{width:100px; height:429px;background:#000;filter:alpha(opacity=50);background:rgba(0,0,0,.5);} .txt p{color:#fff;font-family:"微软雅黑";float:left;position:relative;} .txt .p1{font-size:12px;width:12px;margin:25px 25px 0 20px;} .txt .p2{font-size:14px;width:14px;margin-top:25px;} </style> </head> <body> <div> <ul> <li> <a href="http://www.jb51.net" target="_blank"> <div> <p>作者 : 走天涯</p> <p>我的个人拉萨之旅||故事之城</p> </div> </a> </li> <li> <a href="http://www.jb51.net" target="_blank"> <div> <p>作者 : 走天涯</p> <p>我的个人拉萨之旅||故事之城</p> </div> </a> </li> <li> <a href="http://www.jb51.net" target="_blank"> <div> <p>作者 : 走天涯</p> <p>我的个人拉萨之旅||故事之城</p> </div> </a> </li> <li> <a href="http://www.jb51.net" target="_blank"> <div> <p>作者 : 走天涯</p> <p>我的个人拉萨之旅||故事之城</p> </div> </a> </li> </ul> </div> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $(".pic ul li").hover(function(){ $(this).stop(true).animate({width:"789px"},500).siblings().stop(true).animate({width:"100px"},500); }); </script> </body> </html>

以上就是为大家分享的jQuery半透明抽屉式手风琴代码,希望大家可以喜欢。

【jQuery实现垂直半透明手风琴特效代码分享】相关文章:

JavaScript实现添加、查找、删除元素

jQuery实现表格行上下移动和置顶效果

jQuery实现转动随机数抽奖效果的方法

jQuery插件pagewalkthrough实现引导页效果

js+cookies实现悬浮购物车的方法

javascript实现点击后变换按钮显示文字的方法

jQuery实现控制文字内容溢出用省略号(…)表示的方法

jQuery实现延迟跳转的方法

js实现字符串转日期格式的方法

jquery实现用户打分评分特效

精品推荐
分类导航