{"id":898,"date":"2019-05-13T11:02:23","date_gmt":"2019-05-13T11:02:23","guid":{"rendered":"https:\/\/webdevtrick.com\/?p=898"},"modified":"2019-05-13T16:43:13","modified_gmt":"2019-05-13T16:43:13","slug":"css-flip-effect-on-hover","status":"publish","type":"post","link":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/","title":{"rendered":"CSS Flip Effect On Hover | 3D Flip Effect With HTML &#038; CSS"},"content":{"rendered":"<p><strong>CSS Flip Effect On Hover | 3D Flip Effect With HTML &amp; CSS: <\/strong>You have seen lots of CSS 3D flip <span><a href=\"https:\/\/webdevtrick.com\/css-text-hover-effect\/\" target=\"_blank\" rel=\"noopener noreferrer\">effects<\/a><\/span> on many websites. Mostly they use this effect on Portfolio &amp; Team Member section. First, you will see an image <span lang=\"en\" tabindex=\"0\">&amp; when you hover over on it, then the image will turn and will give information about it. And the transformation of image to text details look like a 3D effect.<\/span><\/p>\n<p>You don&#8217;t have any idea about what you can do with HTML &amp; CSS. Peoples think these are basics of <span><a href=\"https:\/\/webdevtrick.com\/web-development\/\" target=\"_blank\" rel=\"noopener noreferrer\">web development<\/a><\/span>. In other words, they think HTML &amp; CSS is very easy. Yes, It is but unless you don&#8217;t know about the latest version of these HTML5 &amp; CSS3 features. Very few peoples can say, I am an expert in HTML, CSS. Most p<span lang=\"en\" tabindex=\"0\">eople know about it as much as they use it daily.\u00a0<\/span><\/p>\n<p>This article helps you to create a 3D flip effect on mouse hover with CSS.\u00a0 You can create it by CSS&#8217;s command<span style=\"font-family: arial, helvetica, sans-serif;\"><code>transform<\/code>.<\/span> The property <code>transform<\/code> applies a 2D or 3D transformation to an element. This property allows you to rotate, scale, move, skew, etc. (know more about <span><a href=\"https:\/\/www.w3schools.com\/cssref\/css3_pr_transform.asp\" target=\"_blank\" rel=\"noopener noreferrer\">CSS transform<\/a><\/span> ).<\/p>\n<h2>3D CSS Flip Effect On Mouse Hover Source Code<\/h2>\n<p>Let&#8217;s create a 3D flip box with CSS3. You can create an amazing flip effect with this source code. Previously I had shared <span><a href=\"https:\/\/webdevtrick.com\/link-hover-effect-wordpress\/\" target=\"_blank\" rel=\"noopener noreferrer\"> CSS link hover effect<\/a><\/span> as I use in my blogs links. If you want more CSS stuff then go to my <span><a href=\"https:\/\/webdevtrick.com\/web-design\/css\/\" target=\"_blank\" rel=\"noopener noreferrer\">CSS Category<\/a><\/span>. So, let&#8217;s talk about this program: This program created in HTML, CSS &amp; Font Awesome ( a web font-family ). Basically, I use font-awesome for built-in cool icons. I had created 2 files for this program one for <code>html<\/code> other for <code>css<\/code> styling. This program is about to rotate any object on mouse hover.\u00a0 Let&#8217;s see a preview:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-904\" src=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/3d-rotate.gif\" alt=\"css 3d rotate on hover\" width=\"635\" height=\"500\" \/><\/p>\n<p>Now create two files named <code>index.html<\/code> ( or any name you can use ) &amp; another one for giving style named <code>style.css<\/code><br \/>\n<strong><em><span style=\"font-size: 14pt;\">index.html<\/span><\/em><\/strong><\/p>\n<p>Create a file named <em>index.html<\/em> and put these codes given here below.<\/p>\n<pre class=\"lang:default 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\" dir=\"ltr\"&gt;\r\n  &lt;head&gt;\r\n    &lt;meta charset=\"utf-8\"&gt;\r\n    &lt;title&gt;&lt;\/title&gt;\r\n    &lt;link rel=\"stylesheet\" href=\"style.css\"&gt;\r\n    &lt;link rel=\"stylesheet\" href=\"https:\/\/use.fontawesome.com\/releases\/v5.3.1\/css\/all.css\"&gt;\r\n  &lt;\/head&gt;\r\n  &lt;body&gt;\r\n\r\n    &lt;div class=\"card middle\"&gt;\r\n      &lt;div class=\"front\"&gt;\r\n        &lt;img src=\"sample.jpg\" alt=\"\"&gt;\r\n      &lt;\/div&gt;\r\n      &lt;div class=\"back\"&gt;\r\n        &lt;div class=\"back-content middle\"&gt;\r\n          &lt;h2&gt;WebDevTrick&lt;\/h2&gt;\r\n          &lt;span&gt;Designer &amp;amp; Developers Blog&lt;\/span&gt;\r\n          &lt;div class=\"sm\"&gt;\r\n            &lt;a href=\"#\"&gt;&lt;i class=\"fab fa-facebook-f\"&gt;&lt;\/i&gt;&lt;\/a&gt;\r\n            &lt;a href=\"#\"&gt;&lt;i class=\"fab fa-twitter\"&gt;&lt;\/i&gt;&lt;\/a&gt;\r\n            &lt;a href=\"#\"&gt;&lt;i class=\"fab fa-youtube\"&gt;&lt;\/i&gt;&lt;\/a&gt;\r\n            &lt;a href=\"#\"&gt;&lt;i class=\"fab fa-instagram\"&gt;&lt;\/i&gt;&lt;\/a&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n\r\n\r\n\r\n  &lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p><strong><em><span style=\"font-size: 14pt;\">style.css<\/span><\/em><\/strong><\/p>\n<p>Now create a file named style.css for giving effect this program.<\/p>\n<pre class=\"lang:default decode:true \" title=\"style.css\">\/** code by webdevtrick (https:\/\/webdevtrick.com) **\/ \r\n*{\r\n  margin: 0;\r\n  padding: 0;\r\n  text-decoration: none;\r\n  font-family: \"montserrat\";\r\n}\r\nbody{\r\n  background: #333;\r\n}\r\n.middle{\r\n  position: absolute;\r\n  top: 50%;\r\n  left: 50%;\r\n  transform: translate(-50%,-50%);\r\n}\r\n.card{\r\n  cursor: pointer;\r\n  width: 340px;\r\n  height: 480px;\r\n}\r\n.front,.back{\r\n  width: 100%;\r\n  height: 100%;\r\n  overflow: hidden;\r\n  backface-visibility: hidden;\r\n  position: absolute;\r\n  transition: transform .6s linear;\r\n}\r\n.front img{\r\n  height: 100%;\r\n\t\r\n}\r\n.front{\r\n  transform: perspective(600px) rotateY(0deg);\r\n}\r\n.back{\r\n  background: #f1f1f1;\r\n  transform: perspective(600px) rotateY(180deg);\r\n}\r\n.back-content{\r\n  color: #2c3e50;\r\n  text-align: center;\r\n  width: 100%;\r\n}\r\n.sm{\r\n  margin: 20px 0;\r\n}\r\n.sm a{\r\n  display: inline-flex;\r\n  width: 40px;\r\n  height: 40px;\r\n  justify-content: center;\r\n  align-items: center;\r\n  color: #2c3e50;\r\n  font-size: 18px;\r\n  transition: 0.4s;\r\n  border-radius: 50%\r\n}\r\n.sm a:hover{\r\n  background: #2c3e50;\r\n  color: white;\r\n}\r\n.card:hover &gt; .front{\r\n  transform: perspective(600px) rotateY(-180deg);\r\n}\r\n.card:hover &gt; .back{\r\n  transform: perspective(600px) rotateY(0deg);\r\n}\r\n<\/pre>\n<p>That&#8217;s It. Now you have successfully created a rotating flip effect on mouse hover. If you have any doubt 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>CSS Flip Effect On Hover | 3D Flip Effect With HTML &amp; CSS: You have seen lots of CSS 3D flip effects on many websites. Mostly they use this effect on Portfolio &amp; Team Member section. First, you will see an image &amp; when you hover over on it, then the image will turn and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":899,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[43,22,41],"tags":[136,74,135,73,137,51],"class_list":["post-898","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-css","category-web-design","category-web-development","tag-3d-flip-effect","tag-css-animation","tag-css-flip-effect","tag-css-hover-effect","tag-css-rotate","tag-css3"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CSS Flip Effect On Hover | 3D Flip Effect With HTML &amp; CSS<\/title>\n<meta name=\"description\" content=\"Get source code of CSS flip effect on hover. Is article helps you to create an amezing 3D flip effect or CSS rotate on mouse hover.\" \/>\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-flip-effect-on-hover\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Flip Effect On Hover | 3D Flip Effect With HTML &amp; CSS\" \/>\n<meta property=\"og:description\" content=\"Get source code of CSS flip effect on hover. Is article helps you to create an amezing 3D flip effect or CSS rotate on mouse hover.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/\" \/>\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-13T11:02:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-05-13T16:43:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.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-flip-effect-on-hover\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/\"},\"author\":{\"name\":\"shaan\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\"},\"headline\":\"CSS Flip Effect On Hover | 3D Flip Effect With HTML &#038; CSS\",\"datePublished\":\"2019-05-13T11:02:23+00:00\",\"dateModified\":\"2019-05-13T16:43:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/\"},\"wordCount\":395,\"commentCount\":14,\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg\",\"keywords\":[\"3d flip effect\",\"css animation\",\"css flip effect\",\"css hover effect\",\"css rotate\",\"css3\"],\"articleSection\":[\"CSS\",\"Web Design\",\"Web Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/\",\"url\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/\",\"name\":\"CSS Flip Effect On Hover | 3D Flip Effect With HTML & CSS\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg\",\"datePublished\":\"2019-05-13T11:02:23+00:00\",\"dateModified\":\"2019-05-13T16:43:13+00:00\",\"description\":\"Get source code of CSS flip effect on hover. Is article helps you to create an amezing 3D flip effect or CSS rotate on mouse hover.\",\"breadcrumb\":{\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg\",\"width\":1200,\"height\":629,\"caption\":\"css flip effect on hover 3d flip\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webdevtrick.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS Flip Effect On Hover | 3D Flip Effect With HTML &#038; CSS\"}]},{\"@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 Flip Effect On Hover | 3D Flip Effect With HTML & CSS","description":"Get source code of CSS flip effect on hover. Is article helps you to create an amezing 3D flip effect or CSS rotate on mouse hover.","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-flip-effect-on-hover\/","og_locale":"en_US","og_type":"article","og_title":"CSS Flip Effect On Hover | 3D Flip Effect With HTML & CSS","og_description":"Get source code of CSS flip effect on hover. Is article helps you to create an amezing 3D flip effect or CSS rotate on mouse hover.","og_url":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/","og_site_name":"Web Dev Trick","article_publisher":"https:\/\/www.facebook.com\/webdevtrick\/","article_published_time":"2019-05-13T11:02:23+00:00","article_modified_time":"2019-05-13T16:43:13+00:00","og_image":[{"width":1200,"height":629,"url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.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-flip-effect-on-hover\/#article","isPartOf":{"@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/"},"author":{"name":"shaan","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3"},"headline":"CSS Flip Effect On Hover | 3D Flip Effect With HTML &#038; CSS","datePublished":"2019-05-13T11:02:23+00:00","dateModified":"2019-05-13T16:43:13+00:00","mainEntityOfPage":{"@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/"},"wordCount":395,"commentCount":14,"publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"image":{"@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg","keywords":["3d flip effect","css animation","css flip effect","css hover effect","css rotate","css3"],"articleSection":["CSS","Web Design","Web Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/","url":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/","name":"CSS Flip Effect On Hover | 3D Flip Effect With HTML & CSS","isPartOf":{"@id":"https:\/\/webdevtrick.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage"},"image":{"@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg","datePublished":"2019-05-13T11:02:23+00:00","dateModified":"2019-05-13T16:43:13+00:00","description":"Get source code of CSS flip effect on hover. Is article helps you to create an amezing 3D flip effect or CSS rotate on mouse hover.","breadcrumb":{"@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#primaryimage","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/css-flip-effect-on-hover.jpg","width":1200,"height":629,"caption":"css flip effect on hover 3d flip"},{"@type":"BreadcrumbList","@id":"https:\/\/webdevtrick.com\/css-flip-effect-on-hover\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webdevtrick.com\/"},{"@type":"ListItem","position":2,"name":"CSS Flip Effect On Hover | 3D Flip Effect With HTML &#038; CSS"}]},{"@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\/898","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=898"}],"version-history":[{"count":0,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/898\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media\/899"}],"wp:attachment":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media?parent=898"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/categories?post=898"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/tags?post=898"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}