NOVO TUMBLR DE URL'S, PODE DIVULGAR ESSA ASK? OBRIGADA.
wallacepolsom


Discoholic 🪩
I'd rather be in outer space 🛸
cherry valley forever
Lint Roller? I Barely Know Her
Jules of Nature
"I'm Dorothy Gale from Kansas"

oozey mess

❣ Chile in a Photography ❣
RMH


Kaledo Art
Peter Solarz
Claire Keane

@theartofmadeline
he wasn't even looking at me and he found me
NASA

PR's Tumblrdome
seen from Poland

seen from United States

seen from Spain
seen from Germany

seen from Spain

seen from Malaysia
seen from Australia

seen from Austria

seen from United States

seen from Türkiye
seen from Germany

seen from Saudi Arabia
seen from Italy

seen from United States
seen from Vietnam
seen from United Kingdom

seen from Japan

seen from Germany

seen from Malaysia
seen from United States
@gohtml
NOVO TUMBLR DE URL'S, PODE DIVULGAR ESSA ASK? OBRIGADA.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
olá!! pode e dizer pra que serve o display block?!
Como assim amor?
/suh
Eu adorei um theme da quel ! Só qe ele tem a side do lado direito, tem como eu mudar para o esquerdo? Como?
Quel não está nesse tumblr mais.
ALGUM PEDIDO ? /SUH
divulga o tumblr therockicons(.)tumblr(.)com/ ? estamos aceitando moderadores!!

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Bloqueando ctrl + u com alerta
Código
Primeiramente salve se theme no bloco de nota caso algo dê errado. Pegue o código acima e cole ele em <body> caso você não consiga achar procure por <body
Depois só mude o " SUA MENSAGEM AQUI " por a mensagem que você quiser. Nunca jamais retire as aspas
Não reblog
Não repasse
Se for útil like !
/suh
EFEITO WIPE (EM FRASE)
visualizar
esse efeito é feito por um script , então eu não colocar a div da frase aqui você faz sua div de frase normalmente , então vamos lá ? copie esse codigo e coloque antes de <style>
<!-------------------DECREPITAR EFEITO WIPE EXCLUSIVO------------------------> <script type="text/javascript"> // <![CDATA[ // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)' var fgcolour="#656565"; // foreground colour var hlcolour="#b5b5b5"; // highlight colour var bgcolour="#FFFFFF"; // background colour var glcolour="#f8f8f8"; // colour of glow around letters var speed=66; // speed colours change, 1 second = 1000 var delay=50; // how long to wait between wipes var alink="/"; // page to link text to (set to ="" for no link) /**************************** *Multi-Wipe Neon Text Effect* *(c)2003-12 mf2fm web-design* * http://www.mf2fm.com/rv * * DON'T EDIT BELOW THIS BOX * ****************************/ var w_txt, w_txl; var w_flp=bgcolour; var w_sty=Math.floor(Math.random()*8); var w_cnt=-1; var wipes=new Array(); var wrand=new Array(); window.onload=function() { if (document.getElementById) { var i, wiper, wipei; wiper=document.getElementById("wipe"); w_txt=wiper.firstChild.nodeValue; w_txl=w_txt.length; while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]); for (i=0; i<w_txl; i++) { wipei=document.createElement("span"); wipei.appendChild(document.createTextNode(w_txt.charAt(i))); wipes[i]=wipei.style; wipes[i].textShadow=glcolour+" 0px 0px 5px"; wipes[i].color=fgcolour; wiper.appendChild(wipei); } if (alink) { wiper.style.cursor="pointer"; wiper.onclick=function() { top.location.href=alink; } } for (i=0; i<w_txl; i++) wrand[i]=i; wiper=setInterval("randwipe()", speed); }} function c(i, shade) { if (shade==bgcolour) wipes[i].textShadow="none"; else wipes[i].textShadow=glcolour+" 0px 0px 5px"; wipes[i].color=shade; } function randwipe() { var w_old; if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();"); else { w_cnt=-1; w_flp=(w_flp==fgcolour)?bgcolour:fgcolour; w_old=w_sty; while (w_old==w_sty) w_sty=Math.floor(Math.random()*8); } } function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); } function wipe0() { // curtains if (w_cnt<Math.floor(w_txl/2)) { c(w_cnt, hlcolour); c(w_txl-w_cnt-1, hlcolour); } else if (w_cnt<w_txl) { c(w_cnt, w_flp); c(w_txl-w_cnt-1, w_flp); } } function wipe1() { // random var i, rand, temp; if (w_cnt==0) { for (i=0; i<w_txl; i++) { rand=Math.floor(Math.random()*w_txl); temp=wrand[i]; wrand[i]=wrand[rand]; wrand[rand]=temp; } } if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour); if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp); } function wipe2() { // forwards if (w_cnt<w_txl) c(w_cnt, hlcolour); if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp); } function wipe3() { // backwards if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour); if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp); } function wipe4() { // searchlight if (w_cnt<w_txl) c(w_cnt, hlcolour); if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp); if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour); if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour); if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour; } function wipe5() { // fade var i; if (w_cnt<w_txl+3) { var start=(w_flp==fgcolour)?bgcolour:fgcolour; var temp="#"; for (i=1; i<6; i+=2) { var hex1=parseInt(start.substring(i,i+2),16); var hex2=parseInt(w_flp.substring(i,i+2),16); temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2)))); } for (i=0; i<w_txl; i++) c(i, temp); } } function wipe6() { // flash var i; if (w_cnt<6*Math.floor(w_txl/6)+3) { if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour); else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp); else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour); } } function wipe7() { // checkerboard var qtr=Math.floor(w_txl/4); if (w_cnt<qtr) { c(w_cnt, hlcolour); c(w_cnt+2*qtr, hlcolour); } else if (w_cnt<2*qtr) { c(w_cnt-qtr, w_flp); c(w_cnt+qtr, w_flp); } else if (w_cnt<3*qtr) { c(w_cnt-qtr, hlcolour); c(w_cnt+qtr, hlcolour); } else if (w_cnt<w_txl) { c(w_cnt-2*qtr, w_flp); c(w_cnt, w_flp); } } // ]]> </script>
Agora você vai onde você abriu sua div no caso em <body>
ee acrescenta
<span id="wipe"> sua frase se movendo </span>
No caso vai ficar assim
<div class="frase"><span id="wipe"> Teste Decrepitar </span></div> . SE FOI UTIL DÊ LIKE , NÃO REBLOGUE . CREDITE A DECREPITAR
THEME BASE (2 COLUNAS)
preview (@)
Code (@)
essa é outra base minha , se usar credite , eu reconheço meus codigos .
Então tem algumas coisas que já pode mudar pelo aparencce , se usar dê like aqui , proibido reblogar .
Ps : se usar coloque os creditos , não custa nada até por que quem fez a base não foi você , se eu ver ela sem meus creditos por aii , vou denunciar art. lei 184 , bom uso .
Preview (@@)
Code (@@)
theme por decrepitar , se usar avise na ask
Preview (@@)
Code (@@)
theme por decrepitar , se usar avise na ask

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Preview (@@)
Code (@@)
theme por decrepitar , se usar avise na ask
pode me ajudar a divulgar o tumblr e seguir de volta ? obrigado.
Divulgando *--*
QUEM É ESSE MENINO DAS ICONS?
Netto Carrijo (sepultur-e)
Ele é meu melhor amigo u-u'
Todos feitos por: asvezes-eusoqueriafugir
Não Repasse pra ninguém
Não reblog
Se gostar/usar like
/suh
podem fazer um theme base pra fazer vitrine de themes?
Aham..
/suh

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Todos feitos por: asvezes-eusoqueriafugir
Não Repasse pra ninguém
Não reblog
Se gostar/usar like
/suh
ALGUM PEDIDO?