2016-06-30 21:01:06 +02:00
|
|
|
.scroll-top-wrapper
|
2014-11-20 14:57:03 +01:00
|
|
|
= link_to "#banner", class: "smoothscroll" do
|
2014-07-03 22:54:42 +05:30
|
|
|
%i.fa.fa-2x.fa-arrow-circle-up
|
|
|
|
|
|
|
|
|
|
:javascript
|
|
|
|
|
$(function(){
|
|
|
|
|
$(document).on( 'scroll', function(){
|
|
|
|
|
if ($(window).scrollTop() > 100) {
|
|
|
|
|
$('.scroll-top-wrapper').addClass('show');
|
|
|
|
|
} else {
|
|
|
|
|
$('.scroll-top-wrapper').removeClass('show');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|