22 lines
502 B
PHP
22 lines
502 B
PHP
|
|
export default class Footer {
|
|
constructor(Dcat) {
|
|
this.boot(Dcat)
|
|
}
|
|
|
|
boot(Dcat) {
|
|
$(window).scroll(function(){
|
|
if ($(this).scrollTop() > 400) {
|
|
$('.scroll-top').fadeIn();
|
|
} else {
|
|
$('.scroll-top').fadeOut();
|
|
}
|
|
});
|
|
|
|
//Click event to scroll to top
|
|
$('.scroll-top').click(function(){
|
|
$('html, body').animate({scrollTop : 0},1000);
|
|
});
|
|
}
|
|
}
|