首页 >

jQuery实现的经典滑动门效果【jquery】

web前端|js教程

jQuery实现的经典滑动门效果【jquery】

jQuery,滑动门
web前端-js教程
本文实例讲述了jQuery实现的经典滑动门效果。分享给大家供大家参考。具体如下:
求购彩票网站源码,vscode制作教程,ubuntu 有趣,tomcat 国产替换,sqlite导出文件方法,字段拖动插件,百度采用何种前端框架,python网络爬虫之代理ip,php 执行速度,seo学途网,网站如何挂马教程,网页鼠标特效源代码,美女类网站模板lzw
这是一款jQuery 滑动门,从样式上来说,虽然有些古板,但已经具备了经典的滑动门功能,感兴趣的朋友可以继续美化一下界面。
店面展示小程序源码,ubuntu终端vi换行,tomcat查看日志关键字,爬虫怎么分析网站,php7怎么连oracle,国外seo赚钱lzw
运行效果截图如下:
aspx源码怎么集成,vscode宏,ubuntu内核开发,tomcat咋样,sqlite大量读写,magento 服务器要求,ecmall插件,前端easyui框架技术,r语言爬虫教程,php键值互换,深圳seo培训机构,暴利产品竞价单页网站,css网页中从新的窗口打开,内衣网站模板,自动生成html5页面,yzcms企业网站管理系统,影视站程序lzw
在线演示地址如下:

http://demo.jb51.net/js/2015/jquery-jd-hd-move-menu-codes/

具体代码如下:

jQuery 滑动门$(function(){ var len=$(".ul1 li").length; var index; var time; $(".ul1 li").mousemove(function(){  index=$(".ul1 li").index(this);  show(index);  }).eq(0).mousemove();  $(".ul2").hover(function(){  clearInterval(time);   },function(){   time=setInterval(function(){   show(index)   index++;   if(index==len){index=0;}   },2000);   }).trigger("mouseleave");})function show(index) { $(".ul2 li").eq(index).show().siblings().hide(); $(".ul1 li").css("background","url(images/aa.jpg)").eq(index).css("background","url(images/bb.jpg)");} body{ font-family:"宋体"; font-size:9pt; color:#ffffff} #container{ width:510px; height:200px; border:4px #1025c0 solid; margin:0 auto} #container ul li{ cursor:pointer} #container .top{ border:none} #container .top ul{ margin:0; padding:0} #container .top ul li{ cursor:pointer;float:left;list-style:none; width:100px; height:40px; line-height:40px; text-align:center; background:url(images/aa.jpg) repeat-x; border:1px black solid} #container .bottom{ width:510px; height:160px; color:#000000; border:none;} #container .bottom ul{ margin:0; padding:0; width:510px; height:160px;} #container .bottom ul li{ list-style:none} .hide{ display:none}
第一栏第二栏第三栏第四栏第五栏
第一栏第一栏第一栏第一栏第一栏第二栏第二栏第二栏第二栏第三栏第三栏第三栏第三栏第四栏第四栏第四栏第四栏第五栏第五栏第五栏第五栏

  • 暂无相关文章
  • Posted in 未分类