Redirecionamento automatico
É só colocar esse código abaixo de <head>
<meta http-equiv="refresh" content="5; url=SUAURL.tumblr.com/">

blake kathryn
🪼
Peter Solarz

oozey mess

tannertan36
almost home
Lint Roller? I Barely Know Her

No title available
Acquired Stardust
hello vonnie

JBB: An Artblog!

ellievsbear
I'd rather be in outer space 🛸
h

Discoholic 🪩

Andulka
taylor price
todays bird

pixel skylines

PR's Tumblrdome

seen from Malaysia
seen from United States
seen from Ireland

seen from Argentina

seen from Indonesia

seen from United Kingdom
seen from United States

seen from United States
seen from Malaysia

seen from Netherlands

seen from Singapore
seen from Canada
seen from South Korea
seen from Canada
seen from Malaysia
seen from United States

seen from T1
seen from Malaysia

seen from Brazil

seen from United States
@html-place-blog
Redirecionamento automatico
É só colocar esse código abaixo de <head>
<meta http-equiv="refresh" content="5; url=SUAURL.tumblr.com/">
Palavra linkada
<a href=”LINK”>PALAVRA</a>
Wishlist
Coloque assim:
<s>Ja consegui</s><br>
Não consegui<br>
<s>Ja consegui</s><br>
Não consegui<br>
Ou assim:
<img src="http://stephanielouie.comule.com/material/check12.gif"> Ja consegui<br>
<img src="http://stephanielouie.comule.com/material/check11.gif"> Não consegui<br>
<img src="http://stephanielouie.comule.com/material/check12.gif"> Ja consegui<br>
<img src="http://stephanielouie.comule.com/material/check11.gif"> Não co
Hospedando imagens,gifs,links,textos e etc
É só ir nesse site http://www.tumblr.com/themes/upload_static_file
Antigo costumize
É só ir nesse site http://www.tumblr.com/customize-classic
Bloquando botão direito
Cole isso depois de </head>
<script type="text/javascript"> //desabilita menu de opcoes ao clicar no botao direito function desabilitaMenu(e) { if (window.Event) { if (e.which == 2 || e.which == 3) return false; } else { event.cancelBubble = true event.returnValue = false; return false; } } //desabilita botao direito function desabilitaBotaoDireito(e) { if (window.Event) { if (e.which == 2 || e.which == 3) return false; } else if (event.button == 2 || event.button == 3) { event.cancelBubble = true event.returnValue = false; return false; } } //desabilita botao direito do mouse if ( window.Event ) document.captureEvents(Event.MOUSEUP); if ( document.layers ) document.captureEvents(Event.MOUSEDOWN); document.oncontextmenu = desabilitaMenu; document.onmousedown = desabilitaBotaoDireito; document.onmouseup = desabilitaBotaoDireito; </script>
Rolagem infinita
Cole isso na sua descrição
<script type=”text/javascript” src=”http://proto.jp/js/tumblrAutoPager.js“></script>
Bloqueando Ctrl+U
Cole isso depois de <body> substituindo
<body onkeydown=”return false”>
Contador de visitas
Cole isso onde quiser o contador
Visitantes on line - código aqui
Total de visitantes - código aqui
Quantas visitas você já fez - código aqui
Paginação simples
Cole isso depois de <style>
/*** Paginação by madlyluv.com ***/ #paginacaoml {font-size: 10px; font-weight: bold; line-height: 21px; text-shadow: 0 1px 1px #fff;} #paginacaoml a {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: #cor da fonte; text-decoration: none;} #paginacaoml a:hover {background: #cor de fundo; border: none;} #paginacaoml span.pagina_atual {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px 4px; color: #cor da fonte; text-decoration: none;}
#paginacaoml span.info {background: #cor de fundo; margin: 0 1px 0 0; padding: 2px
Depois cole isso depois de {/block:Posts} ou onde quiser que apareça
<div id="paginacaoml"><span class="info" style="font-weight: normal;">Página <b>{CurrentPage}</b> de <b>{TotalPages}</b></span> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}{/block:Pagination} {block:JumpPagination length="10"} {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage} {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage} {/block:JumpPagination} {block:Pagination}{block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
</div>
Se usar credite a Madlyluv
Janela de energia
Cole isso depois de <head>
<script language=”javascript” type=”text/javascript” src=”http://www.onlineleaf.com
Contagem regressiva
<!------INICIO------> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function GetCookie (name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } return null; } function SetCookie (name, value) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var expires = (argc > 2) ? argv[2] : null; var path = (argc > 3) ? argv[3] : null; var domain = (argc > 4) ? argv[4] : null; var secure = (argc > 5) ? argv[5] : false; document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + domain)) + ((secure == true) ? "; secure" : ""); } function DeleteCookie (name) { var exp = new Date(); exp.setTime (exp.getTime() - 1); var cval = GetCookie (name); document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString(); } var expDays = 30; var exp = new Date(); exp.setTime(exp.getTime() + (expDays*24*60*60*1000)); function amt(){ var count = GetCookie('count') if(count == null) { SetCookie('count','1') return 1 } else { var newcount = parseInt(count) + 1; DeleteCookie('count') SetCookie('count',newcount,exp) return count } } function getCookieVal(offset) { var endstr = document.cookie.indexOf (";", offset); if (endstr == -1) endstr = document.cookie.length; return unescape(document.cookie.substring(offset, endstr)); } // End --> </SCRIPT> <script language="JavaScript"> TargetDate = "DIA/MES/ANO HORA AM/PM"; BackColor = "none"; ForeColor = "#a6a6a6"; CountActive = true; CountStepper = -1; LeadingZero = true; DisplayFormat = "%%D%% Days, %%H%% Hours, %%M%% minutes and %%S%% seconds"; FinishMessage = "MENSAGEM FINAL"; </script>
Divisória nos posts
Cole depois de {block:Posts}
<img src=”LINK DA DIVISÓRIA AQUI“>
Titulo se movendo
Cole depois de <head>
<script type="text/javascript"> //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker) function tb8_makeArray(n){ this.length = n; return this.length; } tb8_messages = new tb8_makeArray(1); tb8_messages[0] = "Title here"; tb8_rptType = 'infinite'; tb8_rptNbr = 5; tb8_speed = 100; tb8_delay = 2000; var tb8_counter=1; var tb8_currMsg=0; var tb8_tekst =""; var tb8_i=0; var tb8_TID = null; function tb8_pisi(){ tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1); document.title = tb8_tekst; tb8_sp=tb8_speed; tb8_i++; if (tb8_i==tb8_messages[tb8_currMsg].length){ tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay; } if (tb8_currMsg == tb8_messages.length){ if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){ clearTimeout(tb8_TID); return; } tb8_counter++; tb8_currMsg = 0; } tb8_TID = setTimeout("tb8_pisi()", tb8_sp); } tb8_pisi() </script>
Flocos de neve caindo do mouse
Cole isso depois de <head> ou antes de </style>
<script src="http://static.tumblr.com/8l2gpxb/Apwlulgho/snowstorm2.js"></script>
Lastfm
Abrir a sua conta no Lastfm e entrar nesse link http://www.lastfm.com.br/tools/charts?subpage=gallery#gallery . Feito isso você irá decidir qual é o modelo da sua tabela, existe várias opções, desde as mais simples e básicas até as mais elaboradas e populares. Depois de escolher qual vai ser o modelo da sua lista e decidir o que ela vai exibir, você vai copiar o código que está abaixo de Myspace/Código HTML. Agora abra o Tumblr >> Customize >> Info >> e cole esse código na sua descrição, aperte Theme ou qualquer outra opção da Customização, espere carregar e veja se deu certo e se você gostou se sim salve e saia, se não aperte
Mixpod
Entre no site http://www.mixpod.com/ e se cadastre clicando em Sign Up que fica na parte de cima a direita da página.
Feito isso clique em Create a Playlist
Agora você já pode começar a procurar as músicas que mais gosta para colocar na sua playlist. ( Já vou avisando que as músicas são tiradas de videos do youtube e que nem todas as bandas e músicas são achadas).
Depois de adicionar todas as músicas que você quer na sua playlist, aperte Customize e escolha como será o seu player, depois aperte Colors & Styles para escolher as cores. Feito isso aperte Settings para ajeitar algumas configurações, entre elas se o seu player irá tocar sozinho ou não.
Copiar o código que vai aparecer.
Cole na sua descrição.