<!-- Inicio de código para botones arriba y abajo móvil --> <a style="position:fixed; bottom:5px; margin-left:50%;left:-150px;" href="#" id="abajo" title="Abajo"><img src="https://1.bp.blogspot.com/-59F_cDs2BCo/X4IDrpxSTPI/AAAAAAAAHNU/n5x8pDC-0SIqvCepMJ05uW-1i6jvAB65wCLcBGAsYHQ/s0/HueIzqNeg.png" width="50" height="auto"/></a> <script type="text/javascript"> $(document).ready(function() {$('#abajo').click(function(){ //Id del elemento cliqueable $('html, body').animate({scrollTop:$(document).height()-$(window).height() }, 3000); return false; }); }); </script> <a style="position:fixed; bottom:5px; margin-right:50%;right:-150px;" href="#" id="arriba" title="Arriba"><img src="https://1.bp.blogspot.com/-WTTIuahuWLI/X4IDrM5fQII/AAAAAAAAHNI/w8AG4cebSu8ddKfU7NaLrXc2x2f-f5l5gCLcBGAsYHQ/s0/HueDerNeg.png" width="50" height="auto"/></a> <script type="text/javascript"> $(document).ready(function() { $('#arriba').click(function(){ //Id del elemento cliqueable $('html, body').animate({scrollTop:0}, 3000); return false; }); }); </script> <!-- Fin de código para botones arriba y abajo móvil -->