{"id":1465,"date":"2019-05-29T17:38:38","date_gmt":"2019-05-29T17:38:38","guid":{"rendered":"https:\/\/webdevtrick.com\/?p=1465"},"modified":"2019-05-29T17:38:38","modified_gmt":"2019-05-29T17:38:38","slug":"css-text-cut-effect","status":"publish","type":"post","link":"https:\/\/webdevtrick.com\/css-text-cut-effect\/","title":{"rendered":"CSS Text Cut Effect On Hover | Divide Text And Reveal Another"},"content":{"rendered":"<p><strong>How we can cut a text from the middle using HTML &amp; CSS? Solution: CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another.<\/strong><\/p>\n<p>Yesterday I saw <strong>text cutting effect<\/strong> on <strong>hover<\/strong> on a website, When I did hover on phone number field and the &#8220;phone number&#8221; t<strong>ext cut from the middle<\/strong> and actual number reveals. Then I started thinking about how I can create that <strong>cool effect<\/strong>. Finally, I did my work.<\/p>\n<p>So today I am sharing <strong>CSS Text Cut Effect On Hover<\/strong> program. In other words, <strong>Divide text<\/strong> and <strong>reveal another text on hover<\/strong>. This is a<strong> pure CSS cutting text program<\/strong>, no <span><a href=\"https:\/\/webdevtrick.com\/web-development\/javascript\/\" target=\"_blank\" rel=\"noopener noreferrer\">javascript<\/a><\/span> or any library. Also, it has a little sword effect, when <strong>cutting text<\/strong>. In this case, I take a text &#8220;<em>secret<\/em>&#8221; when I <span><a href=\"https:\/\/webdevtrick.com\/link-hover-effect-wordpress\/\" target=\"_blank\" rel=\"noopener noreferrer\">hover<\/a><\/span> on text, the<strong> text divide in two parts<\/strong> from the <strong>middle<\/strong>. One section of the text goes left and one goes right, The the <strong>second text appears<\/strong>.<\/p>\n<p>This is the power of<strong> CSS3<\/strong>, You don&#8217;t have an idea of what you can do <strong>only with CSS<\/strong>. This program is nothing at all, Expert developers create unbelievable things with <span><a href=\"https:\/\/webdevtrick.com\/web-design\/css\/\" target=\"_blank\" rel=\"noopener noreferrer\">CSS<\/a><\/span>. But if you a beginner, then you can understand is program easily because that is not a hard one. You can use this on your website at special section like <span><a href=\"https:\/\/webdevtrick.com\/dynamic-banner-website-intro-source-code\/\" target=\"_blank\" rel=\"noopener noreferrer\">about intro<\/a><\/span>, portfolio, etc.<\/p>\n<p>If you don&#8217;t get what is the program I am talking about, Then see the <strong>preview<\/strong> given below.<\/p>\n<h3>Preview Of Divide Text And Reveal Another Program<\/h3>\n<p>See this video preview to getting an idea of how this program looks like.<\/p>\n<div style=\"width: 640px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-1465-1\" width=\"640\" height=\"389\" loop autoplay preload=\"metadata\" controls=\"controls\"><source type=\"video\/mp4\" src=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/text-cutting-effect-hover.mp4?_=1\" \/><a href=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/text-cutting-effect-hover.mp4\">https:\/\/webdevtrick.com\/wp-content\/uploads\/text-cutting-effect-hover.mp4<\/a><\/video><\/div>\n<p>Now you can see this program visually. If you like this, then get the <strong>source code<\/strong> of its.<\/p>\n<p><span style=\"font-size: 14pt;\">You May Also Like:<\/span><\/p>\n<ul>\n \t<span><\/p>\n<li><a href=\"https:\/\/webdevtrick.com\/html-css-mode-change\/\" target=\"_blank\" rel=\"noopener noreferrer\">HTML CSS Day &amp; Night Mode<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/css-neon-text-effect\/\" target=\"_blank\" rel=\"noopener noreferrer\">CSS Neon Text Effect<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/html-css-form-validation\/\" target=\"_blank\" rel=\"noopener noreferrer\">Form Validation In Pure HTML CSS<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/css-image-gallery\/\" target=\"_blank\" rel=\"noopener noreferrer\">CSS Image Gallery With 3D Effect<\/a><\/li>\n<p><\/span>\n<\/ul>\n<h2>CSS Text Cut Effect On Hover Source Code<\/h2>\n<p>As always before <strong>sharing source code<\/strong>, Let&#8217;s talk about this program. As you know this is a <strong>Pure CSS Text Cut Effect<\/strong>, Text divide into <strong>parts on hover<\/strong> and another text appear. For creating this program I used<strong> CSS<\/strong> <code>clip<\/code> (get <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/CSS\/clip\" target=\"_blank\" rel=\"noopener noreferrer\">info<\/a>) property. And I gave the text <code>position: absolute;<\/code> property, because The\u00a0<code>clip<\/code> property applies only to absolutely positioned elements. &amp; I used <code>@keyframe<\/code> for creating the <strong>sword effect for cutting text<\/strong>.<\/p>\n<p>For creating this program you have to create only 2 files. One for<strong> HTML<\/strong> and one for<strong> CSS<\/strong>. Follow the steps to create this program without any error.<\/p>\n<p><span style=\"font-size: 14pt;\">index.html<\/span><\/p>\n<p>Create an HTML file named &#8216;<strong><em>index.html<\/em><\/strong>&#8216; and put these codes given below.<\/p>\n<pre class=\"lang:xhtml decode:true \" title=\"index.html\">&lt;!DOCTYPE html&gt;\r\n&lt;!-- code by webdevtrick ( https:\/\/webdevtrick.com ) --&gt;\r\n&lt;html lang=\"en\" &gt;\r\n\r\n&lt;head&gt;\r\n  &lt;meta charset=\"UTF-8\"&gt;\r\n  &lt;title&gt;CSS Text Cutting Effect | Webdevtrick.com&lt;\/title&gt;\r\n  \r\n      &lt;link rel=\"stylesheet\" href=\"style.css\"&gt;\r\n  \r\n&lt;\/head&gt;\r\n\r\n&lt;body&gt;\r\n\r\n  &lt;div class=\"main\"&gt;\r\n  &lt;p class=\"rtext\"&gt;&lt;a href=\"https:\/\/webdevtrick.com\" class=\"txt\" data-txt=\"SECRET\"&gt;WEBDEVTRICK.COM&lt;\/a&gt;&lt;\/p&gt;\r\n&lt;\/div&gt;\r\n\t\r\n&lt;\/body&gt;\r\n\r\n&lt;\/html&gt;\r\n<\/pre>\n<p><span style=\"font-size: 14pt;\">style.css<\/span><\/p>\n<p>Now create a CSS file named &#8216;<strong><em>style.css<\/em><\/strong>&#8216; and put these files.<\/p>\n<pre class=\"lang:css decode:true \" title=\"style.css\">\/** code by webdevtrick ( https:\/\/webdevtrick.com ) **\/\r\n@import url(https:\/\/fonts.googleapis.com\/css?family=Fredoka+One&amp;display=swap);\r\n\r\n* {\r\n  margin: 0;\r\n  padding: 0;\r\n}\r\n\r\nbody {\r\n  width: 100%;\r\n  height: 100%;\r\n  background: #1D1F20;\r\n}\r\n\r\n.main {\r\n  position: relative;\r\n  width: 100%;\r\n  height: 100vh;\r\n}\r\n\r\n.rtext {\r\n  position: absolute;\r\n  top: 0;\r\n  bottom: 0;\r\n  left: 0;\r\n  right: 0;\r\n  width: 120px;\r\n  height: 40px;\r\n  line-height: 40px;\r\n  margin: auto;\r\n}\r\n\r\n.txt {\r\n  position: relative;\r\n  display: block;\r\n  text-decoration: none;\r\n  font-family: 'Fredoka One', cursive;\r\n  font-size: 30px;\r\n  text-align: center;\r\n  color: transparent;\r\n  transition: all .5s 0s ease-out;\r\n\t\r\n}\r\n\r\n.rtext:hover .txt {\r\n  color: white;\r\n  transition: all .8s .3s ease-in;\r\n\tmargin-left: -50px;\r\n}\r\n\r\n.txt::before,\r\n.txt::after {\r\n  content: attr(data-txt);\r\n  position: absolute;\r\n  top: 0;\r\n  left: 0;\r\n  clip: rect(0,54px,40px,0);\r\n  color: #fff;\r\n  transition: all .3s .3s;\r\n}\r\n\r\n.txt::after {\r\n  clip: rect(0,200px,40px,54px);\r\n}\r\n\r\n.rtext:hover .txt::before {\r\n  left: -10px;\r\n  opacity: 0;\r\n}\r\n\r\n.rtext:hover .txt::after {\r\n  left: 10px;\r\n  opacity: 0;\r\n}\r\n\r\n.rtext::before {\r\n  content: '';\r\n  position: absolute;\r\n  top: -100px;\r\n  left: 0;\r\n  right: 0;\r\n  width: 1px;\r\n  height: 80px;\r\n  margin: auto;\r\n  background: #fff;\r\n  visibility: hidden;\r\n  opacity: 0;\r\n}\r\n\r\n.rtext:hover::before {\r\n  -webkit-animation: sword .5s;\r\n          animation: sword .5s;\r\n}\r\n\r\n@keyframes sword {\r\n  0% {top: -100px; visibility: hidden; opacity: 0;}\r\n  20% {visibility: visible; opacity: 1;}\r\n  100% {top: 100px; visibility: hidden; opacity: 0;}\r\n}\r\n\r\n@-webkit-keyframes sword {\r\n  0% {top: -100px; visibility: hidden; opacity: 0;}\r\n  20% {visibility: visible; opacity: 1;}\r\n  100% {top: 100px; visibility: hidden; opacity: 0;}\r\n}\r\n\r\n<\/pre>\n<p>That&#8217;s It. Now you have successfully created a <strong>CSS Text Cut Effect On Hover<\/strong> and <strong>Divide Text And Reveal Another<\/strong>. If you have any doubt or question comment down below.<\/p>\n<p><span style=\"font-family: impact, sans-serif;\">Thanks For Visiting, Keep Visiting.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How we can cut a text from the middle using HTML &amp; CSS? Solution: CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another. Yesterday I saw text cutting effect on hover on a website, When I did hover on phone number field and the &#8220;phone number&#8221; text cut from the middle [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1467,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[43,42,22,41],"tags":[185,74,73,190,155,68,154,67,204,72],"class_list":["post-1465","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-css","category-html","category-web-design","category-web-development","tag-animated-text","tag-css-animation","tag-css-hover-effect","tag-example-and-source-code","tag-html-and-css","tag-html-source-code","tag-pure-css","tag-source-code","tag-text-cutting","tag-text-hover-effect"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CSS Text Cut Effect On Hover | Divide Text And Reveal Another<\/title>\n<meta name=\"description\" content=\"Cut a text from the middle using HTML &amp; CSS, CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another. Get example and the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webdevtrick.com\/css-text-cut-effect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Text Cut Effect On Hover | Divide Text And Reveal Another\" \/>\n<meta property=\"og:description\" content=\"Cut a text from the middle using HTML &amp; CSS, CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another. Get example and the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webdevtrick.com\/css-text-cut-effect\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Dev Trick\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webdevtrick\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-05-29T17:38:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"629\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"shaan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"shaan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/\"},\"author\":{\"name\":\"shaan\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\"},\"headline\":\"CSS Text Cut Effect On Hover | Divide Text And Reveal Another\",\"datePublished\":\"2019-05-29T17:38:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/\"},\"wordCount\":508,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg\",\"keywords\":[\"animated text\",\"css animation\",\"css hover effect\",\"example and source code\",\"html and css\",\"html source code\",\"pure css\",\"source code\",\"text cutting\",\"text hover effect\"],\"articleSection\":[\"CSS\",\"HTML\",\"Web Design\",\"Web Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/\",\"url\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/\",\"name\":\"CSS Text Cut Effect On Hover | Divide Text And Reveal Another\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg\",\"datePublished\":\"2019-05-29T17:38:38+00:00\",\"description\":\"Cut a text from the middle using HTML & CSS, CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another. Get example and the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webdevtrick.com\/css-text-cut-effect\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg\",\"width\":1200,\"height\":629,\"caption\":\"css text cut effect\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webdevtrick.com\/css-text-cut-effect\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webdevtrick.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS Text Cut Effect On Hover | Divide Text And Reveal Another\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webdevtrick.com\/#website\",\"url\":\"https:\/\/webdevtrick.com\/\",\"name\":\"Web Dev Trick\",\"description\":\"HTML5, CSS3, JS, PHP Source Code &amp; Tutorial\",\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webdevtrick.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webdevtrick.com\/#organization\",\"name\":\"Web Dev Trick\",\"url\":\"https:\/\/webdevtrick.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png\",\"width\":512,\"height\":512,\"caption\":\"Web Dev Trick\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webdevtrick\/\",\"https:\/\/pinterest.com\/webdevtrick\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\",\"name\":\"shaan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g\",\"caption\":\"shaan\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CSS Text Cut Effect On Hover | Divide Text And Reveal Another","description":"Cut a text from the middle using HTML & CSS, CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another. Get example and the source code.","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:\/\/webdevtrick.com\/css-text-cut-effect\/","og_locale":"en_US","og_type":"article","og_title":"CSS Text Cut Effect On Hover | Divide Text And Reveal Another","og_description":"Cut a text from the middle using HTML & CSS, CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another. Get example and the source code.","og_url":"https:\/\/webdevtrick.com\/css-text-cut-effect\/","og_site_name":"Web Dev Trick","article_publisher":"https:\/\/www.facebook.com\/webdevtrick\/","article_published_time":"2019-05-29T17:38:38+00:00","og_image":[{"width":1200,"height":629,"url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg","type":"image\/jpeg"}],"author":"shaan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"shaan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/#article","isPartOf":{"@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/"},"author":{"name":"shaan","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3"},"headline":"CSS Text Cut Effect On Hover | Divide Text And Reveal Another","datePublished":"2019-05-29T17:38:38+00:00","mainEntityOfPage":{"@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/"},"wordCount":508,"commentCount":0,"publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"image":{"@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg","keywords":["animated text","css animation","css hover effect","example and source code","html and css","html source code","pure css","source code","text cutting","text hover effect"],"articleSection":["CSS","HTML","Web Design","Web Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webdevtrick.com\/css-text-cut-effect\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/","url":"https:\/\/webdevtrick.com\/css-text-cut-effect\/","name":"CSS Text Cut Effect On Hover | Divide Text And Reveal Another","isPartOf":{"@id":"https:\/\/webdevtrick.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage"},"image":{"@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg","datePublished":"2019-05-29T17:38:38+00:00","description":"Cut a text from the middle using HTML & CSS, CSS Text Cut Effect On Hover, Divide Text From Middle And Reveal Another. Get example and the source code.","breadcrumb":{"@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webdevtrick.com\/css-text-cut-effect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/#primaryimage","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-text-cut-effect.jpg","width":1200,"height":629,"caption":"css text cut effect"},{"@type":"BreadcrumbList","@id":"https:\/\/webdevtrick.com\/css-text-cut-effect\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webdevtrick.com\/"},{"@type":"ListItem","position":2,"name":"CSS Text Cut Effect On Hover | Divide Text And Reveal Another"}]},{"@type":"WebSite","@id":"https:\/\/webdevtrick.com\/#website","url":"https:\/\/webdevtrick.com\/","name":"Web Dev Trick","description":"HTML5, CSS3, JS, PHP Source Code &amp; Tutorial","publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webdevtrick.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webdevtrick.com\/#organization","name":"Web Dev Trick","url":"https:\/\/webdevtrick.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png","width":512,"height":512,"caption":"Web Dev Trick"},"image":{"@id":"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webdevtrick\/","https:\/\/pinterest.com\/webdevtrick\/"]},{"@type":"Person","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3","name":"shaan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g","caption":"shaan"}}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/1465","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/comments?post=1465"}],"version-history":[{"count":0,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/1465\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media\/1467"}],"wp:attachment":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media?parent=1465"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/categories?post=1465"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/tags?post=1465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}