mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
14 lines
361 B
Text
14 lines
361 B
Text
.scroll-top-wrapper
|
|
= link_to "#banner", class: "smoothscroll" do
|
|
%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');
|
|
}
|
|
});
|
|
});
|