sEnte Posted September 22, 2014 Report Share Posted September 22, 2014 (edited) Estou aqui a tentar criar uns botões de scroll para uma páginamas estou aqui com uns problemas $(document).ready(function() { var window_height = $(window).height(); $(window).scroll(function() { var scrolled = $(window).scrollTop(); }); $('.up').click(function() { var scrolled = $(window).scrollTop(); var document_height = $(document).height(); $('body').animate({scrollTop: scrolled - (document_height / 10)}); }); $('.down').click(function() { var scrolled = $(window).scrollTop(); var document_height = $(document).height(); $('body').animate({scrolltop: scrolled + (document_height / 10)}); }); }); index.html <div id="div"></div> <div id="button" class="up">/\</div> <div id="button" class="down">\/</div> Esta é a parte que interessa do código javascript era suposto fazer scroll quando carrego nos botões mas não faz nada. Podem dar uma ajuda? Edited September 22, 2014 by sEnte "If It Ain't Broke, Break it and build something Cooler!" Unknown Link to comment Share on other sites More sharing options...
alexviseu Posted September 22, 2014 Report Share Posted September 22, 2014 Tanto quanto sei nao podes fazer scroll ao elemento body. Link to comment Share on other sites More sharing options...
bruno1234 Posted September 22, 2014 Report Share Posted September 22, 2014 Experimenta antes: $('html, body') em vez de só teres o body. Matraquilhos para Android. Gratuito na Play Store. https://play.google.com/store/apps/details?id=pt.bca.matraquilhos Link to comment Share on other sites More sharing options...
sEnte Posted September 22, 2014 Author Report Share Posted September 22, 2014 Obrigado pelas ajudas mas não funcionou :S "If It Ain't Broke, Break it and build something Cooler!" Unknown Link to comment Share on other sites More sharing options...
I-NOZex Posted September 22, 2014 Report Share Posted September 22, 2014 corrige o teu codigo com ajuda deste tuto http://www.jquerybyexample.net/2013/05/jquery-scroll-page-automatically-by-few-pixels-after-every-few-seconds.html B2R » Beat2Revolution v3.0b | Regista e divulga-nos beat2revolution.net Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now