猎豆优选官网

phone.js 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. var h = '';//浏览器高度
  2. var w = '';//浏览器宽度
  3. $().ready(function () {
  4. h = document.documentElement.clientHeight || document.body.clientHeight;
  5. w = document.documentElement.clientWidth || document.body.clientWidth;
  6. })
  7. //function srcoll () {
  8. // //鼠标滚珠上下滑动
  9. // var topx = 0
  10. // var status = 0;
  11. // var flagBotton = true;
  12. // var flagTop = null;
  13. // var numTop = 0;
  14. // var num = 0;
  15. // var numBottom = 0;
  16. // $(window).bind('mousewheel DOMMouseScroll', function(event) {
  17. // var pageArr = Array.prototype.slice.call($(".page"));
  18. // pageArr.forEach(function (item,index) {
  19. // if($(item).offset().top == 0){
  20. // status = $(item).attr("data-num")
  21. // }
  22. // })
  23. // // console.log(status)
  24. // var winHeight = $(window).height();
  25. // if(numBottom != status && num = 0){
  26. // flagBotton = false;
  27. // }else{
  28. // flagBotton = true;
  29. // }
  30. // if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {//向上滑动
  31. // numTop++;
  32. // if(numTop == 1){
  33. // flagTop = true;
  34. // }else{
  35. // flagTop = false;
  36. // }
  37. // // console.log("向上")
  38. // // if (num > 0 && status == 0) {
  39. // // status = 1;
  40. // // topx = -(num - 1) * winHeight;
  41. // // obj.css('top', topx + "px");
  42. // // $('#zhuangt li').find('span').removeClass('select');
  43. // // $('#zhuangt li').eq(num - 1).find('span').addClass('select');
  44. // //
  45. // // setTimeout(function() {
  46. // // status = 0;
  47. // // obj.attr('data-num', num - 1);
  48. // // if (num === 4) {
  49. // // $('.nextbtn').find('i').attr('class', 'fa fa-angle-down');
  50. // // };
  51. // // }, 800);
  52. // // };
  53. // // if(flagTop && status > 0 && status < 2){
  54. // // setTimeout(function() {
  55. // // pageArr.forEach(function (item, index) {
  56. // // $(item).animate({
  57. // // "top":winHeight
  58. // // });
  59. // // })
  60. // // flagTop=true;
  61. // // console.log(status)
  62. // // }, 800);
  63. // // }
  64. // } else {
  65. // // console.log("向下")
  66. // num++;
  67. // if(num = 0){
  68. //
  69. // }
  70. // if(!flagBotton){
  71. // flagBotton = false;
  72. // }
  73. // if (flagBotton && status < 2) {
  74. // setTimeout(function() {
  75. // pageArr.forEach(function (item, index) {
  76. // $(item).animate({
  77. // "top":-winHeight
  78. // });
  79. // })
  80. // flagBotton=true
  81. // console.log(status)
  82. // }, 800);
  83. // }
  84. // }
  85. // });
  86. //}