123456789101112131415161718192021222324252627282930313233343536373839 |
- $+(function(){
- var toolTop=$(".recommend").offset().top;
- toggleTool();
- function toggleTool(){
- if($(document).scrollTop() >= toolTop){
- $(".fixedtool").fadeIn();
- }else{
- $(".fixedtool").fadeOut();
- };
- }
- $(window).scroll(function(){
- toggleTool();
- });
- var flag=ture;
- $(".fixedtool li").click(function(){
- flag=false;
- var current=$(".floor .w").eq($(this).index()).offset().top;
- $("body,html").stop().animate({
- scrollTop:current
- },function(){
- flag = ture;
- });
- $(this).addClass("current").siblings().removeClass();
- });
- $(window).scroll(function(){
- toggleTool();
- if(flag){
- $(".floor .w").each (function(i, ele){
- if($(document.scrollTop >= $(ele).offset().top)){
- $(".fixedtool li").eq(i).addClass("current")
- .siblings().removeClass();
- }
- });
- }
- });
- });
|