You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
623 B
28 lines
623 B
|
1 year ago
|
$(document).ready(function(){
|
||
|
|
//初始化动画
|
||
|
|
if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))){
|
||
|
|
new WOW().init();
|
||
|
|
};
|
||
|
|
|
||
|
|
//在线客服
|
||
|
|
$('.scroll-top').click(function(){$('html,body').animate({scrollTop: '0px'}, 800);});
|
||
|
|
|
||
|
|
$('.online dl').on("mouseover",function(){
|
||
|
|
$(this).find("dt").show();
|
||
|
|
$(this).siblings().find("dt").hide();
|
||
|
|
});
|
||
|
|
|
||
|
|
$('.online dl').find('.remove').on("click",function(){
|
||
|
|
$(this).parents("dt").hide();
|
||
|
|
});
|
||
|
|
|
||
|
|
$(window).scroll(function() {
|
||
|
|
if ($(document).scrollTop()<=100){
|
||
|
|
$('.online .scroll-top').hide();
|
||
|
|
}else{
|
||
|
|
$('.online .scroll-top').show();
|
||
|
|
}
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
});
|