- 13923176816
-
微信号:微信二维码
-
$('#toolbar dd').bind({
'mouseenter': function () {
if ($(this).children('.slide').length) {
var _this = $(this).children('.slide');
_this.stop(true, true).animate({ 'width': 220 }, 200);
} else if ($(this).children('.pop').length) {
var _this = $(this).children('.pop');
_this.show().animate({ 'right': 65 }, 200);
}
},
'mouseleave': function () {
if ($(this).children('.slide').length) {
var _this = $(this).children('.slide');
_this.stop(false, false).animate({ 'width': 0 }, 200);
} else if ($(this).children('.pop').length) {
var _this = $(this).children('.pop');
_this.hide().animate({ 'right': 90 }, 230);
}
}
});
$("#top").click(function () {
$("body, html").stop().animate({ "scrollTop": 0 });
});
$(".toolbar_tab").hover(function(){
$(this).find("em").stop().animate({"left":"-130px"},300)
},function(){
$(this).find("em").stop().animate({"left":"60px"},300)
});