Cuando creamos un blog debemos de pensar como un usuario o visitante y tomar en cuenta las características y funciones que nuestra bitácora debe tener para facilitar la navegación de nuestras visitas como por ejemplo, menús de categorías en la parte superior, nube de etiquetas en nuestro sidebar y un botón al final o pie de página del blog para que les permita subir hacia el encabezado o inicio con un solo clic.
Este es un botón que usaremos en nuestra barra lateral pero no mostrará ningún tipo de información así que no debemos de preocuparnos si va al inicio o final del sidebar, lo único que hará es mostrar el botón de regreso al final de nuestro blog.
Además, no necesitamos agregar más código dentro de la plantilla o estructura HTML de nuestro blog en Blogger, veamos cómo poner un botón de subir arriba en Blogger Html y Javascript y como modificarlo:
Código botón subir arriba Html Javascript
1º Vamos a nuestra cuenta de Blogger y seleccionamos el blog donde vamos añadir el botón subir arriba Html Javascript.
2º Una vez seleccionado el sitio donde agregaremos el botón, nos llevará al panel de gestión o administración de ese blog en cuestión.
3º Hacemos clic en “Diseño” lo que mostrará la estructura del blog con todos sus gadgets de Blogger.
4º Ahora, seleccionamos (Añadir un gadget) en cualquier parte del blog como header, sidebar, pie de página o bajo las entradas, de igual forma tendrá el mismo efecto.
5º Únicamente seleccionamos el lugar hacemos clic en “Agregar un gadget” escogemos “HTML/Javascript” y pegamos el siguiente código.
6º Por último damos en guardar código HTML/JavaScript y listo.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><script type="text/javascript" >/************************************************ Scroll To Top Control script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)* Modified by www.helperblogger.com* This notice MUST stay intact for legal use* Visit Project Page at http://www.dynamicdrive.com for full source code***********************************************/var scrolltotop={//startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control//scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},controlHTML: '<img src="http://us.cdn3.123rf.com/168nwm/maxsim/maxsim1404/maxsim140400038/27786657-boton-de-subir-hacia-arriba-en-blogger-html-javascript-rojo.jpg" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corneranchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" linksstate: {isvisible:false, shouldvisible:false},scrollup:function(){if (!this.cssfixedsupport) //if control is positioned using JavaScriptthis.$control.css({opacity:0}) //hide control immediately after clicking itvar dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string existsdest=jQuery('#'+dest).offset().topelsedest=0this.$body.animate({scrollTop: dest}, this.setting.scrollduration);},keepfixed:function(){var $window=jQuery(window)var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetxvar controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsetythis.$control.css({left:controlx+'px', top:controly+'px'})},togglecontrol:function(){var scrolltop=jQuery(window).scrollTop()if (!this.cssfixedsupport)this.keepfixed()this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : falseif (this.state.shouldvisible && !this.state.isvisible){this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])this.state.isvisible=true}else if (this.state.shouldvisible==false && this.state.isvisible){this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])this.state.isvisible=false}},init:function(){jQuery(document).ready(function($){var mainobj=scrolltotopvar iebrws=document.allmainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards modemainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>').css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}).attr({title:'Scroll Back to Top'}).click(function(){mainobj.scrollup(); return false}).appendTo('body')if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any textmainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing textmainobj.togglecontrol()$('a[href="' + mainobj.anchorkeyword +'"]').click(function(){mainobj.scrollup()return false})$(window).bind('scroll resize', function(e){mainobj.togglecontrol()})})}}scrolltotop.init()</script>
todo ese mierdero de codigo para poner un tan simple volver arriba?..... no jodas hay gadgets mas livianos y rapidos
ResponderEliminarpo ami me a servido bro
Eliminar