Auto scroll javascript page web
Résolu/Fermé
artemis0
Messages postés
903
Date d'inscription
vendredi 3 janvier 2014
Statut
Membre
Dernière intervention
28 juillet 2018
-
Modifié le 30 déc. 2017 à 20:25
artemis0 Messages postés 903 Date d'inscription vendredi 3 janvier 2014 Statut Membre Dernière intervention 28 juillet 2018 - 30 déc. 2017 à 20:38
artemis0 Messages postés 903 Date d'inscription vendredi 3 janvier 2014 Statut Membre Dernière intervention 28 juillet 2018 - 30 déc. 2017 à 20:38
A voir également:
- Auto scroll js
- Scroll lock - Forum Windows
- Telecharger auto refresh - Télécharger - Divers Web & Internet
- Waze en anglais sur android auto - Forum Téléphones & tablettes Android
- Auto mouse click - Télécharger - Divers Utilitaires
- Auto nettoyage ps4 slim - Forum PS4
1 réponse
artemis0
Messages postés
903
Date d'inscription
vendredi 3 janvier 2014
Statut
Membre
Dernière intervention
28 juillet 2018
179
30 déc. 2017 à 20:38
30 déc. 2017 à 20:38
j'ai trouvé :
function start_scroll_down() {
scroll = setInterval(function(){ window.scrollBy(0, 1); console.log('start');}, 20);
}
window.onscroll = function(ev) {
if ((window.innerHeight + window.pageYOffset) >= document.body.offsetHeight) {
(function smoothscroll(){
var currentScroll = document.documentElement.scrollTop || document.body.scrollTop;
if (currentScroll > 0) {
window.requestAnimationFrame(smoothscroll);
window.scrollTo (0,currentScroll - (currentScroll/5));
}
})();
}
};