{"id":501,"date":"2024-09-01T16:03:25","date_gmt":"2024-09-01T19:03:25","guid":{"rendered":"https:\/\/urutaudev.com.br\/?p=501"},"modified":"2024-09-08T23:17:09","modified_gmt":"2024-09-09T02:17:09","slug":"como-criar-wave-text-effect","status":"publish","type":"post","link":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/","title":{"rendered":"Como criar Wave Text Effect"},"content":{"rendered":"<h1><\/h1>\n<figure id=\"attachment_502\" aria-describedby=\"caption-attachment-502\" style=\"width: 800px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-502 size-large\" src=\"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-1024x466.png\" alt=\"Como criar Wave Text Effect\" width=\"800\" height=\"364\" srcset=\"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-1024x466.png 1024w, https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-300x137.png 300w, https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-768x350.png 768w, https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect.png 1285w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><figcaption id=\"caption-attachment-502\" class=\"wp-caption-text\">Como criar Wave Text Effect<\/figcaption><\/figure>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h2>Introdu\u00e7\u00e3o<\/h2>\n<p><span style=\"font-size: 14pt;\">Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS. Este efeito \u00e9 visualmente atraente e pode ser facilmente implementado, voc\u00ea poder\u00e1 utilizar este efeito para animar textos do seu site ou blog.<\/span><\/p>\n<p><span style=\"font-size: 14pt;\">O Tutorial ser\u00e1 breve e de forma r\u00e1pida n\u00e3o ser\u00e1 necess\u00e1rio o uso de nenhum tipo de biblioteca externa, ser\u00e1 apenas html e css\u00a0.<\/span><\/p>\n<p>&nbsp;<\/p>\n<p><strong><span style=\"font-size: 14pt;\">Primeiro passo voc\u00ea dever\u00e1 criar a estrutura da p\u00e1gina, para isso crie um arquivo html contendo\u00a0 o c\u00f3digo que mostro abaixo:<\/span><\/strong><\/p>\n<div>\n<div>\n<div><code>&lt;!DOCTYPE html&gt;<\/code><\/div>\n<div><code>&lt;html lang=\"en\"&gt;<\/code><\/div>\n<div><code>&lt;head&gt;<\/code><\/div>\n<div><code>\u00a0 \u00a0 &lt;meta charset=\"UTF-8\"&gt;<\/code><\/div>\n<div><code>\u00a0 \u00a0 &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;<\/code><\/div>\n<div><code><code>\u00a0 \u00a0 &lt;title&gt; Wave Text Effect<\/code><\/code><code>&lt;\/title&gt;<\/code><\/div>\n<div><code>&lt;\/head&gt;<\/code><\/div>\n<div><code>&lt;body&gt;<\/code><\/div>\n<div><code>&lt;\/body&gt;<\/code><\/div>\n<div><code>&lt;\/html&gt;<\/code><\/div>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n<p><strong><span style=\"font-size: 14pt;\">Logo ap\u00f3s crio um componente h1 que cont\u00e9m o texto a ser animado:<\/span><\/strong><\/p>\n<p>&nbsp;<\/p>\n<div>\n<div>\n<div>\n<div><code>&lt;h1 class=\"animated-text\"&gt;<\/code><\/div>\n<div><code>\u00a0 &lt;span&gt;A&lt;\/span&gt;&lt;span&gt;n&lt;\/span&gt;&lt;span&gt;i&lt;\/span&gt;&lt;span&gt;m&lt;\/span&gt;&lt;span&gt;a&lt;\/span&gt;&lt;span&gt;\u00e7&lt;\/span&gt;&lt;span&gt;\u00e3&lt;\/span&gt;&lt;span&gt;o&lt;\/span&gt;<\/code><\/div>\n<div><code>&lt;\/h1&gt;<\/code><\/div>\n<\/div>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n<p><strong><span style=\"font-size: 14pt;\">Por ultimo adiciono o css respons\u00e1vel pela estiliza\u00e7\u00e3o da p\u00e1gina e pela anima\u00e7\u00e3o do texto:<\/span><\/strong><\/p>\n<p>&nbsp;<\/p>\n<div>\n<div>\n<div><code>\u00a0 &lt;style&gt;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 body {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 background-color: #000;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 display: flex;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 justify-content: center;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 align-items: center;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 height: 100vh;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 margin: 0;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 font-family: 'Courier New', Courier, monospace;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 display: inline-block;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 font-size: 9vw;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 line-height: 9vw;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 color: #FB4264;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 text-shadow: 0 0 3vw #F40A35;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation: neon 1s ease infinite;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 display: inline-block;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation: float 1.5s ease-in-out infinite;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \/* Anima\u00e7\u00e3o flutuante *\/<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 @keyframes float {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 0%,<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 100% {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 transform: translateY(0);<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 50% {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 transform: translateY(-10px);<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \/* Anima\u00e7\u00e3o neon *\/<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 @keyframes neon {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 0%,<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 100% {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 color: #FED128;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 50% {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 text-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 color: #806914;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \/* Delays para criar o efeito de onda *\/<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(1) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(2) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0.1s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(3) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0.2s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(4) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0.3s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(5) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0.4s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(6) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0.5s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(7) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0.6s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 .animated-text span:nth-child(8) {<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 animation-delay: 0.7s;<\/code><\/div>\n<div><code>\u00a0 \u00a0 \u00a0 \u00a0 }<\/code><\/div>\n<div><code>\u00a0 \u00a0 &lt;\/style&gt;<\/code><\/div>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n<p><span style=\"font-size: 14pt;\"> No c\u00f3digo acima, utilizei a tag <code>&lt;style&gt;<\/code> para adicionar o CSS diretamente no arquivo HTML.\u00a0 Abaixo deixo uma breve explica\u00e7\u00e3o das principais partes do CSS:<\/span><\/p>\n<ul>\n<li><span style=\"font-size: 14pt;\"><strong>body<\/strong>: Nesta tag adicionei as propriedades para centralizar o conte\u00fado na tela e definir o fundo e o alinhamento dos componentes.<\/span><\/li>\n<li><span style=\"font-size: 14pt;\"><strong>.animated-text<\/strong>: Define o tamanho da fonte e exibe o texto como um bloco inline.<\/span><\/li>\n<li><span style=\"font-size: 14pt;\"><strong>.animated-text span<\/strong>: Aplica a anima\u00e7\u00e3o a cada letra individualmente, com um atraso calculado para criar o efeito de onda.<\/span><\/li>\n<li><span style=\"font-size: 14pt;\"><strong>@keyframes float<\/strong>: Define a anima\u00e7\u00e3o, movendo cada letra para cima e para baixo.<\/span><\/li>\n<li><span style=\"font-size: 14pt;\"><strong>@keyframes neon<\/strong>: Define a anima\u00e7\u00e3o do texto alternando as cores em neon.<\/span><\/li>\n<li><strong><span style=\"font-size: 14pt;\">animated-text span:nth-child(1): <\/span><\/strong><span style=\"font-size: 14pt;\">Defino o tempo de cada letra;<\/span><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><strong><span style=\"font-size: 14pt;\">Deixo aqui um v\u00eddeo curto do processo e de como ficou anima\u00e7\u00e3o do texto:<\/span><\/strong><\/p>\n<p>&nbsp;<\/p>\n<p><iframe loading=\"lazy\" title=\"Create a wave text effect in HTML and CSS #webdevelopment #htmlcss\" width=\"800\" height=\"450\" src=\"https:\/\/www.youtube.com\/embed\/V7WLNBe029g?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/p>\n<p>&nbsp;<\/p>\n<p><strong><span style=\"font-size: 14pt;\">Deixo aqui um v\u00eddeo do processo completo de como ficou anima\u00e7\u00e3o do texto:<\/span><\/strong><\/p>\n<p>&nbsp;<\/p>\n<p><iframe loading=\"lazy\" title=\"Create  wave text effect in HTML and CSS #webdevelopment #htmlcss\" width=\"800\" height=\"450\" src=\"https:\/\/www.youtube.com\/embed\/mpJ_nMMI_Rc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/p>\n<p>&nbsp;<\/p>\n<h2>Conclus\u00e3o<\/h2>\n<p><span style=\"font-size: 14pt;\">Com esses simples\u00a0 passos, voc\u00ea consegue de forma r\u00e1pida criar um efeito para os textos de seu site ou blog deixando mais atraente usando apenas HTML e CSS.\u00a0 Caso necessite voc\u00ea pode personalizar a anima\u00e7\u00e3o e estiliza\u00e7\u00e3o conforme a sua necessidade , alterando as cores ou at\u00e9 mesmo o tempo de dura\u00e7\u00e3o entre as letras.<\/span><\/p>\n<p>&nbsp;<\/p>\n<h2>C\u00f3digo fonte do <a href=\"https:\/\/urutaudev.com.br\/index.php\/category\/tutorias\/\">tutorial <\/a> Wave Text Effect:<\/h2>\n<p><strong><span style=\"font-size: 14pt;\"><a href=\"https:\/\/github.com\/JrDevCJ\/css-tutorial\/tree\/main\/wave-text-effect\" target=\"_blank\" rel=\"noopener\">C\u00f3digo Fonte<\/a><\/span><\/strong><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; &nbsp; &nbsp; Introdu\u00e7\u00e3o Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS. Este efeito \u00e9<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"colormag_page_container_layout":"default_layout","colormag_page_sidebar_layout":"default_layout","footnotes":""},"categories":[17,5],"tags":[98,29,27,99,18],"class_list":["post-501","post","type-post","status-publish","format-standard","hentry","category-design","category-tutorias","tag-animacao","tag-css","tag-html","tag-text-effect","tag-tutorias"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Como criar Wave Text Effect - UrutauDev<\/title>\n<meta name=\"description\" content=\"Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS sem a necessidade de uma biblioteca.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Como criar Wave Text Effect - UrutauDev\" \/>\n<meta property=\"og:description\" content=\"Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS sem a necessidade de uma biblioteca.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/\" \/>\n<meta property=\"og:site_name\" content=\"UrutauDev\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-01T19:03:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-09T02:17:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-1024x466.png\" \/>\n<meta name=\"author\" content=\"C. Junior\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"C. Junior\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/\"},\"author\":{\"name\":\"C. Junior\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#\\\/schema\\\/person\\\/7e321618d23a158d5a42d5cfbdd99dd6\"},\"headline\":\"Como criar Wave Text Effect\",\"datePublished\":\"2024-09-01T19:03:25+00:00\",\"dateModified\":\"2024-09-09T02:17:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/\"},\"wordCount\":389,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/urutaudev.com.br\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Como-criar-Wave-Text-Effect-1024x466.png\",\"keywords\":[\"anima\u00e7\u00e3o\",\"css\",\"html\",\"text effect\",\"tutorias\"],\"articleSection\":[\"Design\",\"Tutorias\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/\",\"url\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/\",\"name\":\"Como criar Wave Text Effect - UrutauDev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/urutaudev.com.br\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Como-criar-Wave-Text-Effect-1024x466.png\",\"datePublished\":\"2024-09-01T19:03:25+00:00\",\"dateModified\":\"2024-09-09T02:17:09+00:00\",\"description\":\"Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS sem a necessidade de uma biblioteca.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#primaryimage\",\"url\":\"https:\\\/\\\/urutaudev.com.br\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Como-criar-Wave-Text-Effect.png\",\"contentUrl\":\"https:\\\/\\\/urutaudev.com.br\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/Como-criar-Wave-Text-Effect.png\",\"width\":1285,\"height\":585,\"caption\":\"Como criar Wave Text Effect\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/2024\\\/09\\\/01\\\/como-criar-wave-text-effect\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\\\/\\\/urutaudev.com.br\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Como criar Wave Text Effect\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#website\",\"url\":\"https:\\\/\\\/urutaudev.com.br\\\/\",\"name\":\"UrutauDev\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/urutaudev.com.br\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#organization\",\"name\":\"UrutauDev\",\"url\":\"https:\\\/\\\/urutaudev.com.br\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/urutaudev.com.br\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/cropped-urutau-dev-logo.png\",\"contentUrl\":\"https:\\\/\\\/urutaudev.com.br\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/cropped-urutau-dev-logo.png\",\"width\":100,\"height\":84,\"caption\":\"UrutauDev\"},\"image\":{\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/urutaudev.com.br\\\/#\\\/schema\\\/person\\\/7e321618d23a158d5a42d5cfbdd99dd6\",\"name\":\"C. Junior\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e7df4c63012e2f6991311d4037bdc57752b996058cf1396747a7ab74e8ac032e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e7df4c63012e2f6991311d4037bdc57752b996058cf1396747a7ab74e8ac032e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e7df4c63012e2f6991311d4037bdc57752b996058cf1396747a7ab74e8ac032e?s=96&d=mm&r=g\",\"caption\":\"C. Junior\"},\"sameAs\":[\"http:\\\/\\\/urutaudev.com.br\",\"instagram.com\\\/urutautec\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC8pDLb5GaYBAoWwQkIzrhRw\"],\"url\":\"https:\\\/\\\/urutaudev.com.br\\\/index.php\\\/author\\\/urutaudev-com-br\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Como criar Wave Text Effect - UrutauDev","description":"Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS sem a necessidade de uma biblioteca.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/","og_locale":"en_US","og_type":"article","og_title":"Como criar Wave Text Effect - UrutauDev","og_description":"Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS sem a necessidade de uma biblioteca.","og_url":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/","og_site_name":"UrutauDev","article_published_time":"2024-09-01T19:03:25+00:00","article_modified_time":"2024-09-09T02:17:09+00:00","og_image":[{"url":"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-1024x466.png","type":"","width":"","height":""}],"author":"C. Junior","twitter_card":"summary_large_image","twitter_misc":{"Written by":"C. Junior","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#article","isPartOf":{"@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/"},"author":{"name":"C. Junior","@id":"https:\/\/urutaudev.com.br\/#\/schema\/person\/7e321618d23a158d5a42d5cfbdd99dd6"},"headline":"Como criar Wave Text Effect","datePublished":"2024-09-01T19:03:25+00:00","dateModified":"2024-09-09T02:17:09+00:00","mainEntityOfPage":{"@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/"},"wordCount":389,"commentCount":0,"publisher":{"@id":"https:\/\/urutaudev.com.br\/#organization"},"image":{"@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-1024x466.png","keywords":["anima\u00e7\u00e3o","css","html","text effect","tutorias"],"articleSection":["Design","Tutorias"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/","url":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/","name":"Como criar Wave Text Effect - UrutauDev","isPartOf":{"@id":"https:\/\/urutaudev.com.br\/#website"},"primaryImageOfPage":{"@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#primaryimage"},"image":{"@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect-1024x466.png","datePublished":"2024-09-01T19:03:25+00:00","dateModified":"2024-09-09T02:17:09+00:00","description":"Neste tutorial,\u00a0 vou mostrar como criar Wave Text Effect utilizando apenas\u00a0 html, CSS sem a necessidade de uma biblioteca.","breadcrumb":{"@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#primaryimage","url":"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect.png","contentUrl":"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2024\/09\/Como-criar-Wave-Text-Effect.png","width":1285,"height":585,"caption":"Como criar Wave Text Effect"},{"@type":"BreadcrumbList","@id":"https:\/\/urutaudev.com.br\/index.php\/2024\/09\/01\/como-criar-wave-text-effect\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/urutaudev.com.br\/"},{"@type":"ListItem","position":2,"name":"Como criar Wave Text Effect"}]},{"@type":"WebSite","@id":"https:\/\/urutaudev.com.br\/#website","url":"https:\/\/urutaudev.com.br\/","name":"UrutauDev","description":"","publisher":{"@id":"https:\/\/urutaudev.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/urutaudev.com.br\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/urutaudev.com.br\/#organization","name":"UrutauDev","url":"https:\/\/urutaudev.com.br\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/urutaudev.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2023\/08\/cropped-urutau-dev-logo.png","contentUrl":"https:\/\/urutaudev.com.br\/wp-content\/uploads\/2023\/08\/cropped-urutau-dev-logo.png","width":100,"height":84,"caption":"UrutauDev"},"image":{"@id":"https:\/\/urutaudev.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/urutaudev.com.br\/#\/schema\/person\/7e321618d23a158d5a42d5cfbdd99dd6","name":"C. Junior","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e7df4c63012e2f6991311d4037bdc57752b996058cf1396747a7ab74e8ac032e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e7df4c63012e2f6991311d4037bdc57752b996058cf1396747a7ab74e8ac032e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e7df4c63012e2f6991311d4037bdc57752b996058cf1396747a7ab74e8ac032e?s=96&d=mm&r=g","caption":"C. Junior"},"sameAs":["http:\/\/urutaudev.com.br","instagram.com\/urutautec","https:\/\/www.youtube.com\/channel\/UC8pDLb5GaYBAoWwQkIzrhRw"],"url":"https:\/\/urutaudev.com.br\/index.php\/author\/urutaudev-com-br\/"}]}},"_links":{"self":[{"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/posts\/501","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/comments?post=501"}],"version-history":[{"count":22,"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/posts\/501\/revisions"}],"predecessor-version":[{"id":525,"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/posts\/501\/revisions\/525"}],"wp:attachment":[{"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/media?parent=501"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/categories?post=501"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/urutaudev.com.br\/index.php\/wp-json\/wp\/v2\/tags?post=501"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}