Warning.png

Поддержка Wiki прекращена, она доступна в режиме архива. Информация в ней устарела и может быть неактуальной.

Участник:MailGik/hilarious.js — различия между версиями

Материал из Hilarious Wiki
Перейти к: навигация, поиск
Строка 1: Строка 1:
 
/* Добавляет кнопку "Вверх" слева */
 
/* Добавляет кнопку "Вверх" слева */
  
/*var body = document.getElementById('content');
+
var snowId = document.getElementById("footer");
document.body.innerHTML +='<div class="scroll-top hide-scroll-top"><span class="scroll-top-img"><br></span></div>';
+
var solfId = document.createElement("a");
 
+
solfId.setAttribute("id","gotop");
$(".scroll-top").click(function() {
+
solfId.setAttribute("title","Back to top");
  $("html, body").animate({ scrollTop: 0 }, "slow");
+
snowId.appendChild(solfId);
  return false;
+
});*/
+
function goTop(){
 
+
    $(window).scroll(function(e) {
 
+
//If the scroll bar at the top of more than 200 elements
 
+
    if($(window).scrollTop()>200)
     /*var body = document.getElementsByTagName('body');
+
    $("#gotop").fadeIn(100);//In a second interval in the id=gotop element
     document.body.innerHTML +='<div class="scroll-top hide-scroll-top"><span class="scroll-top-img"><br></span></div>';
+
    else
$(document).ready(function() {
+
     $("#gotop").fadeOut(100);//In a second interval fade out the elements of id=gotop
  $(".scroll-top").each(function() {
+
     });
var t, e;
+
};
return (t = $(this)).hide().removeClass("hide-scroll-top"),
+
$(function(){
e = 0,
+
    //Click back on top of the elements
$(window).scroll(function() {
+
    $("#gotop").click(function(e) {
return t[$(this).scrollTop() > 0 ? "fadeIn" : "fadeOut"](300)
+
        //Return to top with second interval
}),
+
        $('body,html').animate({scrollTop:0},100);
t.find(".scroll-top-img").click(function() {
+
    });
var t;
+
    $("#gotop").mouseover(function(e) {
return t = $(window),
+
        $(this).css("background","url(http://localhost/images/backtop.gif) no-repeat 0px -100px");
t.scrollTop() > 0 && (e = t.scrollTop(),
+
    });
$("body,html").animate({
+
    $("#gotop").mouseout(function(e) {
scrollTop: 0
+
        $(this).css("background","url(http://localhost/images/backtop.gif) no-repeat 0px 0px");
}, 400)),
+
    });
!1
+
    goTop();//The fade in and fade out back to the top element
});
+
});
});
 
});*/
 

Версия 17:19, 19 августа 2016

/* Добавляет кнопку "Вверх" слева */

var snowId = document.getElementById("footer");
var solfId = document.createElement("a");
solfId.setAttribute("id","gotop");
solfId.setAttribute("title","Back to top");
snowId.appendChild(solfId);
 
function goTop(){
    $(window).scroll(function(e) {
//If the scroll bar at the top of more than 200 elements
    if($(window).scrollTop()>200)
    $("#gotop").fadeIn(100);//In a second interval in the id=gotop element
    else
    $("#gotop").fadeOut(100);//In a second interval fade out the elements of id=gotop
    });
};
$(function(){
    //Click back on top of the elements
    $("#gotop").click(function(e) {
        //Return to top with second interval
        $('body,html').animate({scrollTop:0},100);
    });
    $("#gotop").mouseover(function(e) {
        $(this).css("background","url(http://localhost/images/backtop.gif) no-repeat 0px -100px");
    });
    $("#gotop").mouseout(function(e) {
        $(this).css("background","url(http://localhost/images/backtop.gif) no-repeat 0px 0px");
    });
    goTop();//The fade in and fade out back to the top element
});