jquery仿百度经验滑动切换浏览效果


Posted in Javascript onApril 14, 2015

jquery仿百度经验滑动切换浏览效果

$(function() {
  wordStrong();
  $("#content ul").width($("#content ul li:first").width()*$("#content ul li").length);
  $("#header .top_right .vote").hover(function() {
    $(this).children(".hover-tip").css("display", "block");
    $(this).children(".num").css("display", "none");  
  }, function() {
    $(this).children(".hover-tip").css("display", "none");
    $(this).children(".num").css("display", "block");  
  });
   
   
  $("#content .left, #content .right").width(($(document).width()-$("#content").width())/4);
  $("#content .left").css("left", -$("#content .left").width());
  $("#content .right").css("right", -$("#content .right").width());
   
  var showId = 0;
  $("#content span.left").hover(function() {
    if ( checkFirst() ) return ;
    $(this).css("cursor", "pointer");
    $(this).siblings(".sl").stop().animate({
      opacity:0.5 
    }); 
  }, function() {
    $(this).siblings(".sl").stop().animate({
      opacity:0
    }); 
  }).click(function() {
    if ( checkFirst() ) return ;
    showId --;
    $("#content").attr("showId", showId);
    $("#footer li").children().removeClass("active").end().children().eq(showId).addClass("active");
    center(showId);
  });
   
  $("#content span.right").hover(function() {
    if ( checkLast() ) return ;
    $(this).css("cursor", "pointer");
    $(this).siblings(".sr").stop().animate({
      opacity:0.5
    }); 
  }, function() {
    $(this).siblings(".sr").stop().animate({
      opacity:0
    }); 
  }).click(function() {
    if ( checkLast() ) return ;  
    showId ++;   
    $("#content").attr("showId", showId);
    $("#footer li").children().removeClass("active").end().children().eq(showId).addClass("active");
    center(showId); 
  });
   
  function checkFirst() {
    if ( $("#content").attr("showId") == 0 ) {
      $("#content span.left").css("cursor", "default");
      return true;    
    }
    return false;
  }
   
  function checkLast() {
    if ( $("#content").attr("showId") == $("#content ul li").length-1 ) {
      $("#content span.right").css("cursor", "default");
      return true;    
    }
    return false;  
  }
     
  /* 首字母大写 */
  function wordStrong() {
    var liList = $("#content ul li");
    for (var j = 0; j < liList.length; j ++) {
      var pList = $("#content .cont_"+(j+1)+" .cont_word p");
      for (var i = 0; i < pList.length; i ++) {
        var p = pList.get(i);
        var pCont = $(p).html();    
        var s = $("<b>"+(i+1)+"</b>");
        s.css("font-size", "24px");   
        $(p).html('');
        s.appendTo(p);
        $(p).append(pCont.substring(1));    
      }
    }
  }  
   
  center(0);
   
  //相对li居中
  function center(liIndex) {
    var li = $("#content ul li").css("opacity", 0.3).eq(liIndex).css("opacity", 1);
    $("#content ul").animate({
      left: (-li.width()*liIndex)
    });
  }
   
  var footLen = $("#content ul li").length;
  var foots = $("#footer ul");
  for (var i = 1; i < footLen-1; i ++) {
    var childA = $("<a>").html(i);
    childA.attr("href", "#");
    $("<li>").append(childA).insertBefore(foots.children("[step=last]")).attr("step", i);   
  }
  foots.children(":last").attr("step", footLen-1);
  foots.css("left", ($(window).width()-foots.width())/2); 
  $("#footer li").click(function() {
    $("#footer ul li").children().removeClass("active");
    $(this).children().addClass("active");
    center($(this).attr("step"));
  });
   
  function myAddEvent(obj, e, fn) {
    if ( obj.attachEvent ) {
      obj.attachEvent('on'+e, fn);
    }else obj.addEventListener(e, fn, false);
  }
   
  function onMouseWheel(ev) { 
    var ev = ev||event;   
    //IE
    //wheelDelta  下滚:负, 上滚:下
    //alert(oEvent.wheelDelta);
    //FF
    //detail:  下滚:正, 上滚: 负
    //alert(oEvent.detail)   
    var bDown = true;
    if ( ev.wheelDelta ) {
      bDown = ev.wheelDelta<0;
    }else {
      bDown = ev.detail>0;
    }    
    if ( !bDown ) {
      if ( checkFirst() ) return ;
      showId --;     
    }
    else {
      if ( checkLast() ) return ;
      showId ++;     
    }
    $("#content").attr("showId", showId);
    $("#footer ul li").children().removeClass("active").end().eq(showId).children().addClass("active");
    center(showId);
    if ( oEvent.preventDefault ) {
      oEvent.preventDefault();
    }
    return false;
  }
   
  myAddEvent(window, 'mousewheel', onMouseWheel);
  myAddEvent(window, 'DOMMouseScroll', onMouseWheel);
});

以上所述就是本文给大家介绍的全部内容了,希望大家能够喜欢。

Javascript 相关文章推荐
用JavaScript判断CSS浏览器类型前缀的两种方法
Oct 08 Javascript
mvvm双向绑定机制的原理和实现代码(推荐)
Jun 07 Javascript
javascript实现根据汉字获取简拼
Sep 25 Javascript
纯JavaScript 实现flappy bird小游戏实例代码
Sep 27 Javascript
Ajax 加载数据 练习代码
Jan 05 Javascript
Angular 4.x 路由快速入门学习
May 03 Javascript
mint-ui 时间插件使用及获取选择值的方法
Feb 09 Javascript
react-native使用leanclound消息推送的方法
Aug 06 Javascript
微信小程序如何自定义table组件
Jun 29 Javascript
JS中的算法与数据结构之二叉查找树(Binary Sort Tree)实例详解
Aug 16 Javascript
解决vue打包后刷新页面报错:Unexpected token
Aug 27 Javascript
微信小程序实现拨打电话功能的示例代码
Jun 28 Javascript
jQuery获得子元素个数的方法
Apr 14 #Javascript
jQuery简单实现遍历数组的方法
Apr 14 #Javascript
jquery插件orbit.js实现图片折叠轮换特效
Apr 14 #Javascript
jQuery遍历页面所有CheckBox查看是否被选中的方法
Apr 14 #Javascript
jquery+html5制作超酷的圆盘时钟表
Apr 14 #Javascript
JavaScript将字符串转换为整数的方法
Apr 14 #Javascript
使用javascript实现判断当前浏览器
Apr 14 #Javascript
You might like
PHP中file_exists函数不支持中文名的解决方法
2014/07/26 PHP
PHP基本语法总结
2014/09/06 PHP
分享PHP守护进程类
2015/12/30 PHP
js 键盘记录实现(兼容FireFox和IE)
2010/02/07 Javascript
jQuery MD5加密实现代码
2010/03/15 Javascript
Javascript 网页黑白效果实现代码(兼容IE/FF等)
2010/04/23 Javascript
EXTJS记事本 当CompositeField遇上RowEditor
2011/07/31 Javascript
Javascript绝句欣赏 一些经典的js代码
2012/02/22 Javascript
Javascript模块化编程(一)模块的写法最佳实践
2013/01/17 Javascript
JS注册/移除事件处理程序(ExtJS应用程序设计实战)
2013/05/07 Javascript
动态加载dtree.js树treeview(示例代码)
2013/12/17 Javascript
jQuery获得包含margin的outerWidth和outerHeight的方法
2015/03/25 Javascript
JS控制按钮10秒钟后可用的方法
2015/12/22 Javascript
JavaScript里 ==与===区别详解
2016/08/16 Javascript
WEB 前端开发中防治重复提交的实现方法
2016/10/26 Javascript
BootStrap table使用方法分析
2016/11/08 Javascript
详解微信小程序 相对定位和绝对定位
2017/05/11 Javascript
vue axios同步请求解决方案
2017/09/29 Javascript
bootstrap select下拉搜索插件使用方法详解
2017/11/23 Javascript
Three.JS实现三维场景
2018/12/30 Javascript
vue模块拖拽实现示例代码
2019/03/09 Javascript
微信小程序动态添加view组件的实例代码
2019/05/23 Javascript
微信小程序反编译的实现
2020/12/10 Javascript
Python Socket编程入门教程
2014/07/11 Python
Python数据类型中的“冒号“[::]——分片与步长操作示例
2018/01/24 Python
解决pandas使用read_csv()读取文件遇到的问题
2018/06/15 Python
Python文件监听工具pyinotify与watchdog实例
2018/10/15 Python
Python多重继承之菱形继承的实例详解
2020/02/12 Python
如何使用Python自动生成报表并以邮件发送
2020/10/15 Python
X/HTML5 和 XHTML2
2008/10/17 HTML / CSS
菲律宾票务网站:StubHub菲律宾
2018/04/21 全球购物
单位推荐信范文
2015/03/27 职场文书
给老婆的保证书怎么写
2015/05/08 职场文书
期中考试后的感想
2015/08/07 职场文书
初中化学教学反思
2016/02/22 职场文书
《将心比心》教学反思
2016/02/23 职场文书