overTab.prototype = { init: function() { var self = this; this.btn.eq(this.index).addClass('hover'); this.contentBox.eq(this.index).show(); this.btn.mouseover(function() { self.oldIndex = self.index self.index = $(this).index(); self.switct(self.index) }) }, switct: function(i) { this.btn.eq(this.oldIndex).removeClass('hover'); this.contentBox.eq(this.oldIndex).hide(); this.btn.eq(i).addClass('hover'); this.contentBox.eq(i).show(); } }; var hot = new hoverTab('.tab_menu') //热门游戏版块移动border $('.tab_menu_r .game_com_list li').mouseover(function() { var left = $(this)[0]['offsetLeft']; $(this).parents('.tab_menu_r').find('.line_box .line').css('left', left + 'px'); })
X