Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: This feature may not be available in some browsers.
Y el buscador, ya puestos, porque es que NO FUNCIONA.
Lleva así meses.
// ==UserScript==
// @name Burbuja
// @include https://www.burbuja.info/*
// @version 1
// @require https://code.jquery.com/jquery-1.9.1.min.js
// ==/UserScript==
var target = window.location.hash,
target = target.replace('#', '');
window.location.hash = target;
$(window).on('load', function() {
if (target) {
$('html, body').animate({
scrollTop: $("#" + target).offset().top
}, 700, 'swing', function () {});
}
});
// ==UserScript==
// @name Burbuja
// @include https://www.burbuja.info/*
// @version 1
// @require https://code.jquery.com/jquery-1.9.1.min.js
// @run-at document-end
// ==/UserScript==
var target = window.location.hash,
target = target.replace('#', '');
window.location.hash = target;
$(window).on('load', function() {
if (target) {
$('html, body').animate({
scrollTop: $("#" + target).offset().top
}, 700, 'swing', function () {});
}
});
Llegarás hasta el infinito y todo seguirá igual.