Участник:MailGik/hilarious.js — различия между версиями
Материал из Hilarious Wiki
MailGik (обсуждение | вклад) |
MailGik (обсуждение | вклад) |
||
Строка 11: | Строка 11: | ||
//If the scroll bar at the top of more than 200 elements | //If the scroll bar at the top of more than 200 elements | ||
if($(window).scrollTop()>200) | if($(window).scrollTop()>200) | ||
− | $("#scroll-top").fadeIn( | + | $("#scroll-top").fadeIn(300);//In a second interval in the id=scroll-top element |
else | else | ||
− | $("#scroll-top").fadeOut( | + | $("#scroll-top").fadeOut(300);//In a second interval fade out the elements of id=scroll-top |
}); | }); | ||
}; | }; |
Версия 17:32, 19 августа 2016
/* Добавляет кнопку "Вверх" слева */
var snowId = document.getElementById("footer");
var solfId = document.createElement("a");
solfId.setAttribute("id","scroll-top");
solfId.setAttribute("title","Наверх");
snowId.appendChild(solfId);
function scrollTop(){
$(window).scroll(function(e) {
//If the scroll bar at the top of more than 200 elements
if($(window).scrollTop()>200)
$("#scroll-top").fadeIn(300);//In a second interval in the id=scroll-top element
else
$("#scroll-top").fadeOut(300);//In a second interval fade out the elements of id=scroll-top
});
};
$(function(){
//Click back on top of the elements
$("#scroll-top").click(function(e) {
//Return to top with second interval
$('body,html').animate({scrollTop:0},100);
});
scrollTop();//The fade in and fade out back to the top element
});