Tumgik
#Tutorial7
advarchcomms · 2 years
Text
Tumblr media
0 notes
couponsfortherapyplz · 3 months
Text
Tumblr media
Okay, so I saw this video on drawing "fast, lose and bold" (the perfections inside me refused for it to be fast :')), and I like the final result. Here's the video:
Hope it helps :)
5 notes · View notes
codehunter · 1 year
Text
Rendering raw html with reactjs
So is this the only way to render raw html with reactjs?
// http://facebook.github.io/react/docs/tutorial.html// tutorial7.jsvar converter = new Showdown.converter();var Comment = React.createClass({ render: function() { var rawMarkup = converter.makeHtml(this.props.children.toString()); return ( <div className="comment"> <h2 className="commentAuthor"> {this.props.author} </h2> <span dangerouslySetInnerHTML={{__html: rawMarkup}} /> </div> ); }});
I know there are some cool ways to markup stuff with JSX, but I am mainly interested in being able to render raw html (with all the classes, inline styles, etc..). Something complicated like this:
<!-- http://getbootstrap.com/components/#dropdowns-example --><div class="dropdown"> <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true"> Dropdown <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Separated link</a></li> </ul></div>
I would not want to have to rewrite all of that in JSX.
Maybe I am thinking about this all wrong. Please correct me.
https://codehunter.cc/a/javascript/rendering-raw-html-with-reactjs
0 notes
lady-tinyfingers · 2 years
Text
https://youtube.com/shorts/XGDESdh9w1c?feature=share
0 notes
giovannarestani · 5 years
Text
#MMM2019 #MarzoMesdelasManualidades #USAYPRgaramigas #Garabattas #GarabattasWorld #Tutorial7 #GiovannaRestani #NJcraftery
Tumblr media
0 notes
roxassenpai · 7 years
Photo
Tumblr media
tutorial7
 i then drew over the skin and filled in his eyes
0 notes
all-the-icons-blog · 12 years
Text
Efeito recortado no PS CS4 - Por All the Icons
Primeiro, você vai abrir a foto que você quer. (print)
Segundo, você vai abrir a ferramenta "Pen Tool" e coloque lá em cima como mostra no print. (print)
Terceiro, vai fazer um ponto para começar o recorte. (print)
Quarto, vai fazendo varios pontos como se fosse um recorte mesmo e vai ficar várias linhas. Quando terminar você tem que juntar as linhas, tem que se tornar uma só. (print)
Quinto, clica com o botão direito na linha e vai aparecer "Make Seletion" e clica ok. (print)
Sexto, vai ficar uns pontilhados na imagem certo? (print)
Setimo, clique "Ctrl + J" e vai ficar duas camadas. (print)
Oitavo, você vai excluir a primeira camada (Background) e vai ficar a "Layer 1" recortado. (print)
Nono, salve no formato PNG e ta pronto o seu recorte ! (foto original) Obs.: vai ficar com o fundo transparente ok?
Extra: Para fazer tipo uma borda ao redor do recorte basta você seguir o tutorial a seguir.
Primeiro, clique duas vezes na camada e marque e clique em "Stroke" e configure como quizer e clique Ok. (print)
Pronto, agora é só salvar e PNG.
Se gostou dê like e créditos a All the Icons. Dúvidas? Ask.
0 notes
mayaemaiahtml · 12 years
Text
Como bloquear o menu de opções ao clicar no botão direito do mouse (copiar)
Isso é pra quem não quer deixar que ninguém copie as coisas do seu tumblr, é bem simples:
1º passo: Copie o código:
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; } } document.oncontextmenu = desabilitaMenu; document.onmousedown = desabilitaBotaoDireito; document.onmouseup = desabilitaBotaoDireito; </script>
2º passo: Aperte Ctrl+F, digite <head> e cole o código depois dele.
E prontinho, ninguém vai copiar suas ideias ;D
Se for útil dê like, não reblogue.
0 notes
advarchcomms · 2 years
Text
Tumblr media
Disappearance of Turkey's Lake Tuz
Images from Landsat Image Gallery
0 notes
ll-banners-blog · 13 years
Text
Link Colorido
Copie esse código. Cole ele depois de <head>
Se for útil dê like :)
/Laura 
1 note · View note
codehunter · 3 years
Text
Rendering raw html with reactjs
So is this the only way to render raw html with reactjs?
// http://facebook.github.io/react/docs/tutorial.html// tutorial7.jsvar converter = new Showdown.converter();var Comment = React.createClass({ render: function() { var rawMarkup = converter.makeHtml(this.props.children.toString()); return ( <div className="comment"> <h2 className="commentAuthor"> {this.props.author} </h2> <span dangerouslySetInnerHTML={{__html: rawMarkup}} /> </div> ); }});
I know there are some cool ways to markup stuff with JSX, but I am mainly interested in being able to render raw html (with all the classes, inline styles, etc..). Something complicated like this:
<!-- http://getbootstrap.com/components/#dropdowns-example --><div class="dropdown"> <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true"> Dropdown <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1"> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li> <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Separated link</a></li> </ul></div>
I would not want to have to rewrite all of that in JSX.
Maybe I am thinking about this all wrong. Please correct me.
https://codehunter.cc/a/reactjs/rendering-raw-html-with-reactjs
0 notes