/** * created by administrator on 2017/10/25 0025. */ ;(function(){ function _indexfn(){}; _indexfn.prototype = { _init:function(){ this.scrolltop(); this.event(); }, _hover:function(parentele){ $(parentele).children().hover(function(){ $(this).addclass('active'); },function () { $(this).removeclass('active'); }); }, scrolltop:function(){ var h = $(window).height(); $(window).scroll(function(){ var scrolltop = $(window).scrolltop(); if(scrolltop>h){ $('.float_box').show(); }else{ $('.float_box').hide(); } }); $('.float_up').on('click',function(){ $('body,html').animate({scrolltop:0},500); }); },event:function(){ $('.screen_small_menu').on('click',function(){ $(this).siblings('.screen_small_list').toggleclass('active'); }); $('.nav_list li').hover(function(){ $(this).find('.down_list').show(); },function(){ $(this).find('.down_list').hide(); }); } } window._indexfn = new _indexfn(); })(); $(function(){ _indexfn._hover('.float_list'); _indexfn._init(); });