...
|
...
|
@@ -25,11 +25,11 @@ require('../common/return-top'); // return-top |
|
|
lazyLoad($('.banner-img'));
|
|
|
|
|
|
// 浮动在线客服和返回顶部的鼠标移入移出切换效果
|
|
|
$('.service, .return-top').hover(function() {
|
|
|
$(this).find('.iconfont').addClass('hide').end().find('.hover-text').removeClass('hide');
|
|
|
}, function() {
|
|
|
$(this).find('.iconfont').removeClass('hide').end().find('.hover-text').addClass('hide');
|
|
|
});
|
|
|
function toggleShow(e) {
|
|
|
$(e.target).find('span').toggleClass('hide');
|
|
|
};
|
|
|
|
|
|
$('.service, .return-top').hover(toggleShow, toggleShow);
|
|
|
|
|
|
// repos service-return when window resize
|
|
|
$(window).resize(reposServiceTop);
|
...
|
...
|
|