{"id":1279,"date":"2017-03-08T21:53:52","date_gmt":"2017-03-08T16:23:52","guid":{"rendered":"http:\/\/new.codingislove.com\/?p=1279"},"modified":"2017-05-20T13:10:37","modified_gmt":"2017-05-20T07:40:37","slug":"button-background-animation-effect","status":"publish","type":"post","link":"https:\/\/codingislove.com\/button-background-animation-effect\/","title":{"rendered":"Two sides sliding button background animation effect"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif\" alt=\"Two sides sliding button background animation effect\" \/><\/p>\n<p>Each time when I come up with new button background animation effect tutorial, it really excites me and creates an anxiety to share with you guys.\u00a0 So in this article I&#8217;m going to explain you guys &#8212; how to create a Two sides sliding button background animation effect<\/p>\n<p><!--more--><\/p>\n<p>If you guys have followed my previous articles, In one of my previous articles I have written a article about &#8212; <a href=\"https:\/\/codingislove.com\/button-sliding-animation-effect\/\" target=\"_blank\">Button background sliding animation effect<\/a>\u00a0 which is created using one slider, where as in this article I&#8217;m going to use two sliders to create an interesting Two sides sliding button background animation effect.<\/p>\n<p><strong>Two sides sliding button background animation effect :<br \/>\n<\/strong> Here in this animation effect I&#8217;m using two sliders which are tilted to a certain angle. and getting tilted angle is quite interesting thing in this animation effect. It can be achieved by using CSS3 <code>skew()<\/code> method.<\/p>\n<h4>Come lets dive into some real coding<\/h4>\n<ol>\n<li>Consider a div element with <code>id:wrapper<\/code>. inside this div element create two more div elements and give them a different classes &#8211; <code>class:btn<\/code> , <code>class:btn1<\/code><br \/>\n<img decoding=\"async\" src=\"http:\/\/imgh.us\/twoside1.jpg\" alt=\"Two sides sliding button background animation effect\" \/><\/li>\n<li>Now consider two <code>span<\/code> elements and one <code>p<\/code> element within two div elements, by giving each <code>span<\/code> with different classes. Here span elements are useful for creating sliders.<img decoding=\"async\" src=\"http:\/\/imgh.us\/twoside2.jpg\" alt=\"Two sides sliding button background animation effect\" \/><\/li>\n<li>Start adding CSS to the parent div element, by giving width, height, and margin.\n<pre>#wrapper {\n        width: 500px;\n        height: auto;\n        margin: 50px auto;\n}<\/pre>\n<\/li>\n<li>Now add the CSS to two div elements inside parent div, same styling&#8217;s are given to two div elements by adding width, height, border, and give <code>position:relative;<\/code> so that we can move the sliders which are inside the div elements.\n<pre>.btn, .btn1{\n       width: 300px;\n       height: auto;\n       border: 3px solid #bb0000;\n       padding: 20px;\n       margin: 100px auto;\n       text-align: center;\n       text-transform: uppercase;\n       font-weight: bold;\n       position: relative;\n       cursor: pointer;\n       font-size: 24px;\n       color: #bb0000;\n       box-sizing: border-box;\n}<\/pre>\n<\/li>\n<li>Give the <code>p<\/code> elements <code>position:relative;<\/code> and <code>z-index:999;<\/code> so that the text will be always above the sliders whenever hovered over the div elements.\n<pre>.btn p, .btn1 p{\n       position: relative;\n       z-index: 999;\n}\n<\/pre>\n<\/li>\n<li>Next give the div elements <code>color:#fff;<\/code> so that whenever hovered over it, text color turns into white.\n<pre>.btn:hover, .btn1:hover  {\n      color: #fff;\n}\n<\/pre>\n<\/li>\n<li>Now add CSS to the <strong>top slider<\/strong>, by giving width, height, background-color and make its <code>position:absolute;<\/code> so that we can move the slider <strong>above<\/strong> the div element by giving <code>top: -98px;<\/code>. and for getting tilted effect we can add the <code>transform: skewY(10deg);<\/code> property. by giving negative valve <code>transform: skewY(-10deg);<\/code> we can tilt the slider in the opposite direction.\n<pre>.btn .t-slider {\n      width: 100%;\n      background-color: #bb0000;\n      height: 60px;\n      position: absolute;\n      top: -98px;\n      left: 0px;\n      transform: skewY(10deg);\n      transition: all 0.7s;\n}<\/pre>\n<p><img decoding=\"async\" src=\"http:\/\/imgh.us\/twoside3.jpg\" alt=\"Two sides sliding button background animation effect\" \/><\/li>\n<li>Now add CSS to the<strong> down slider<\/strong>, by giving width, height, background-color and make its <code>position:absolute;<\/code> so that we can move the slider <strong>below<\/strong> the div element by giving <code>top: 98px;<\/code>. and for getting tilted effect we can add the <code>transform: skewY(10deg);<\/code> property. by giving negative valve <code>transform: skewY(-10deg);<\/code> we can tilt the slider in the opposite direction.\n<pre>.btn .d-slider {\n       width: 100%;\n       background-color: #bb0000;\n       height: 68px;\n       position: absolute;\n       top: 98px;\n       left: 0px;\n       transform: skewY(10deg);\n       transition: all 0.7s;\n}\n<\/pre>\n<p><img decoding=\"async\" src=\"http:\/\/imgh.us\/twoside4.jpg\" alt=\"Two sides sliding button background animation effect\" \/><\/li>\n<li>Now add the hover effect to the div element, so that whenever hovered over the div element we can see the animation effect.\n<pre>.btn:hover .t-slider {top: -30px;transition: all 0.7s;}\n.btn:hover .d-slider {top: 29px;transition: all 0.7s;}\n<\/pre>\n<\/li>\n<\/ol>\n<h4>This is how Two sides sliding button background animation effect works without <code>overflow:hidden;<\/code> property<\/h4>\n<p><img decoding=\"async\" src=\"http:\/\/imgh.us\/ezgif.com-gif-maker_15.gif\" alt=\"Two sides sliding button background animation effect\" \/><\/p>\n<p>So now add the overflow property to the div elements<\/p>\n<pre>.btn, .btn1{overflow:hidden;}<\/pre>\n<p>Before I wrap this article, I want to make sure you guys know about few properties and methods, which I used in this article.<\/p>\n<h4>First Let me explain about <code>skew()<\/code> method<\/h4>\n<ol>\n<li><strong>skew()<\/strong> method which is used for tilting or skewing the elements and this method is used with the help of CSS3 <code>transform<\/code> property.<\/li>\n<li><strong>skew()<\/strong> method tilts or skews the elements in two directions along x-axis and y-axis.<\/li>\n<li><code>transform: skew();<\/code> the value passed inside the <strong>skew()<\/strong> method should be in degrees.<\/li>\n<li><strong>syntax<\/strong> for skew x-axis and skew y-axis methods<br \/>\nx-axis transform:\u00a0 skewX(10deg);<br \/>\ny-axis &#8212; transform:\u00a0 skewY(10deg);<\/li>\n<li><strong>main syntax<\/strong> &#8212; <code>transform: skew(10deg , 5deg);<\/code><br \/>\nfirst value represents x direction<br \/>\nsecond value represents y direction<\/li>\n<li>So here I made use of <code>transform:skewY();<\/code> property to tilt the sliders.<\/li>\n<\/ol>\n<h4>Now let me explain with\u00a0<strong>Example, <\/strong>how does <code>overflow:hidden;<\/code> property works I see many beginners get confuse with this property.<\/h4>\n<ol>\n<li>Consider a div with <code>class:btn<\/code> and inside the div element add <code>p<\/code> and <code>span<\/code> elements. Now style the div element by adding the <code>width:200px;<\/code> <code>padding:10px;<\/code> and <code>position:relative;<\/code><\/li>\n<li>Reason why I gave the <code>position:relative;<\/code> to the div element is to move the child elements(here child elements are p and span element) inside the div element. and to move the child elements we have to make the parents div element <code>position:relative;<\/code> and child elements(which you want to move) <code>position:absolute;<\/code> and finally by using top, left, bottom, and right properties we can move the child elements.<\/li>\n<li>Now style the <code>span<\/code> element by giving width, height, and background-color and give its <code>position:absolute;<\/code><\/li>\n<li>See here I give <code>top:40px;<\/code> and <code>left:0px;<\/code> to the span element. so that the span element lies outside(below) the div element.<br \/>\n<img decoding=\"async\" src=\"http:\/\/imgh.us\/Capture1_108.png\" \/><\/li>\n<li>Now see what happens when I give <code>overflow:hidden;<\/code> property to div element, span element gets hidden. but check the below image, by using developer tool we can see the span element clearly which is hidden.\n<pre>.btn{overflow:hidden;}<\/pre>\n<p><img decoding=\"async\" src=\"http:\/\/imgh.us\/Capture_5457.png\" alt=\"\" \/><\/li>\n<li>Now we can bring back the span element by using hover effect, so give the <code>top:0px;<\/code> to div element.\n<pre>.btn:hover span{ top:0px;transition:all 0.5s; }<\/pre>\n<p><img decoding=\"async\" src=\"http:\/\/imgh.us\/JRGLsj4K0R.gif\" \/><\/li>\n<\/ol>\n<p>Hope so this article helps you guys to understand few concepts clearly. Here I wrap this article check out the Demo below.<br \/>\n<p class='codepen'  data-height='339' data-theme-id='0' data-slug-hash='vxNNza' data-default-tab='result' data-animations='run' data-editable='' data-embed-version='2'>\nSee the Pen Two sides sliding button background animation effects by rajeshdn (@cool_lazyboy) on CodePen.<\/p>\n<\/p>\n<div style=\"margin-top: 15px; margin-bottom: 15px;\" class=\"sharethis-inline-share-buttons\" ><\/div>","protected":false},"excerpt":{"rendered":"<p>Each time when I come up with new button background animation effect tutorial, it really excites me and creates an anxiety to share with you&hellip; <\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[32],"tags":[30,29],"class_list":["post-1279","post","type-post","status-publish","format-standard","hentry","category-ui-school","tag-css","tag-html"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Two sides sliding button background animation effect - Coding is Love<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codingislove.com\/button-background-animation-effect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Two sides sliding button background animation effect - Coding is Love\" \/>\n<meta property=\"og:description\" content=\"Each time when I come up with new button background animation effect tutorial, it really excites me and creates an anxiety to share with you&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codingislove.com\/button-background-animation-effect\/\" \/>\n<meta property=\"og:site_name\" content=\"Coding is Love\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/codingislove\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-08T16:23:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-05-20T07:40:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif\" \/>\n<meta name=\"author\" content=\"Rajesh DN\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codingislove\" \/>\n<meta name=\"twitter:site\" content=\"@codingislove\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rajesh DN\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/\"},\"author\":{\"name\":\"Rajesh DN\",\"@id\":\"https:\/\/codingislove.com\/#\/schema\/person\/9070020f6a2366f68e903ed60a9a26e4\"},\"headline\":\"Two sides sliding button background animation effect\",\"datePublished\":\"2017-03-08T16:23:52+00:00\",\"dateModified\":\"2017-05-20T07:40:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/\"},\"wordCount\":808,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codingislove.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif\",\"keywords\":[\"css\",\"html\"],\"articleSection\":[\"UI School\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codingislove.com\/button-background-animation-effect\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/\",\"url\":\"https:\/\/codingislove.com\/button-background-animation-effect\/\",\"name\":\"Two sides sliding button background animation effect - Coding is Love\",\"isPartOf\":{\"@id\":\"https:\/\/codingislove.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif\",\"datePublished\":\"2017-03-08T16:23:52+00:00\",\"dateModified\":\"2017-05-20T07:40:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codingislove.com\/button-background-animation-effect\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage\",\"url\":\"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif\",\"contentUrl\":\"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codingislove.com\/button-background-animation-effect\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Coding is Love\",\"item\":\"https:\/\/codingislove.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UI School\",\"item\":\"https:\/\/codingislove.com\/category\/ui-school\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Two sides sliding button background animation effect\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codingislove.com\/#website\",\"url\":\"https:\/\/codingislove.com\/\",\"name\":\"Coding is Love\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/codingislove.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codingislove.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codingislove.com\/#organization\",\"name\":\"Coding is Love\",\"url\":\"https:\/\/codingislove.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codingislove.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/codingislove.com\/wp-content\/uploads\/2015\/12\/codinglovenew.png\",\"contentUrl\":\"https:\/\/codingislove.com\/wp-content\/uploads\/2015\/12\/codinglovenew.png\",\"width\":300,\"height\":225,\"caption\":\"Coding is Love\"},\"image\":{\"@id\":\"https:\/\/codingislove.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/codingislove\/\",\"https:\/\/x.com\/codingislove\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codingislove.com\/#\/schema\/person\/9070020f6a2366f68e903ed60a9a26e4\",\"name\":\"Rajesh DN\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codingislove.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6f196618f2d574837c33869b0c9772a12c7bc19f89d1efa60d7c88f2ab410c39?s=96&d=wavatar&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6f196618f2d574837c33869b0c9772a12c7bc19f89d1efa60d7c88f2ab410c39?s=96&d=wavatar&r=g\",\"caption\":\"Rajesh DN\"},\"description\":\"Rajesh Dn is a UI developer at TCS. he likes exploring new technologies and likes hanging with friends and surfing youtube in his spare time.\",\"url\":\"https:\/\/codingislove.com\/author\/rajeshdn\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Two sides sliding button background animation effect - Coding is Love","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:\/\/codingislove.com\/button-background-animation-effect\/","og_locale":"en_US","og_type":"article","og_title":"Two sides sliding button background animation effect - Coding is Love","og_description":"Each time when I come up with new button background animation effect tutorial, it really excites me and creates an anxiety to share with you&hellip;","og_url":"https:\/\/codingislove.com\/button-background-animation-effect\/","og_site_name":"Coding is Love","article_publisher":"https:\/\/facebook.com\/codingislove\/","article_published_time":"2017-03-08T16:23:52+00:00","article_modified_time":"2017-05-20T07:40:37+00:00","og_image":[{"url":"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif","type":"","width":"","height":""}],"author":"Rajesh DN","twitter_card":"summary_large_image","twitter_creator":"@codingislove","twitter_site":"@codingislove","twitter_misc":{"Written by":"Rajesh DN","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codingislove.com\/button-background-animation-effect\/#article","isPartOf":{"@id":"https:\/\/codingislove.com\/button-background-animation-effect\/"},"author":{"name":"Rajesh DN","@id":"https:\/\/codingislove.com\/#\/schema\/person\/9070020f6a2366f68e903ed60a9a26e4"},"headline":"Two sides sliding button background animation effect","datePublished":"2017-03-08T16:23:52+00:00","dateModified":"2017-05-20T07:40:37+00:00","mainEntityOfPage":{"@id":"https:\/\/codingislove.com\/button-background-animation-effect\/"},"wordCount":808,"commentCount":0,"publisher":{"@id":"https:\/\/codingislove.com\/#organization"},"image":{"@id":"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif","keywords":["css","html"],"articleSection":["UI School"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codingislove.com\/button-background-animation-effect\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codingislove.com\/button-background-animation-effect\/","url":"https:\/\/codingislove.com\/button-background-animation-effect\/","name":"Two sides sliding button background animation effect - Coding is Love","isPartOf":{"@id":"https:\/\/codingislove.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage"},"image":{"@id":"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif","datePublished":"2017-03-08T16:23:52+00:00","dateModified":"2017-05-20T07:40:37+00:00","breadcrumb":{"@id":"https:\/\/codingislove.com\/button-background-animation-effect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codingislove.com\/button-background-animation-effect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codingislove.com\/button-background-animation-effect\/#primaryimage","url":"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif","contentUrl":"https:\/\/imgh.us\/ezgif.com-gif-maker_14.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/codingislove.com\/button-background-animation-effect\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Coding is Love","item":"https:\/\/codingislove.com\/"},{"@type":"ListItem","position":2,"name":"UI School","item":"https:\/\/codingislove.com\/category\/ui-school\/"},{"@type":"ListItem","position":3,"name":"Two sides sliding button background animation effect"}]},{"@type":"WebSite","@id":"https:\/\/codingislove.com\/#website","url":"https:\/\/codingislove.com\/","name":"Coding is Love","description":"","publisher":{"@id":"https:\/\/codingislove.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codingislove.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codingislove.com\/#organization","name":"Coding is Love","url":"https:\/\/codingislove.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codingislove.com\/#\/schema\/logo\/image\/","url":"https:\/\/codingislove.com\/wp-content\/uploads\/2015\/12\/codinglovenew.png","contentUrl":"https:\/\/codingislove.com\/wp-content\/uploads\/2015\/12\/codinglovenew.png","width":300,"height":225,"caption":"Coding is Love"},"image":{"@id":"https:\/\/codingislove.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/codingislove\/","https:\/\/x.com\/codingislove"]},{"@type":"Person","@id":"https:\/\/codingislove.com\/#\/schema\/person\/9070020f6a2366f68e903ed60a9a26e4","name":"Rajesh DN","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codingislove.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6f196618f2d574837c33869b0c9772a12c7bc19f89d1efa60d7c88f2ab410c39?s=96&d=wavatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6f196618f2d574837c33869b0c9772a12c7bc19f89d1efa60d7c88f2ab410c39?s=96&d=wavatar&r=g","caption":"Rajesh DN"},"description":"Rajesh Dn is a UI developer at TCS. he likes exploring new technologies and likes hanging with friends and surfing youtube in his spare time.","url":"https:\/\/codingislove.com\/author\/rajeshdn\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","amp_enabled":true,"_links":{"self":[{"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/posts\/1279","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/comments?post=1279"}],"version-history":[{"count":0,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/posts\/1279\/revisions"}],"wp:attachment":[{"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/media?parent=1279"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/categories?post=1279"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/tags?post=1279"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}