{"id":1393,"date":"2017-05-31T12:44:15","date_gmt":"2017-05-31T07:14:15","guid":{"rendered":"http:\/\/new.codingislove.com\/?p=1393"},"modified":"2020-07-22T19:20:50","modified_gmt":"2020-07-22T13:50:50","slug":"hamburger-buttons","status":"publish","type":"post","link":"https:\/\/codingislove.com\/hamburger-buttons\/","title":{"rendered":"Hamburger button effects &#8211; Part 2"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/i.imgur.com\/5zwTX76.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>Some time ago, I wrote an article on<a href=\"https:\/\/codingislove.com\/hamburger-navigation-bar\/\" target=\"_blank\" rel=\"noopener noreferrer\">&nbsp;hamburger button<\/a>. where I&#8217;ve shown how to create a very basic and simple hamburger button effect. In this article, I&#8217;m going to show you guys how to create a few different kinds of Hamburger button effects. Just have a look at the above Image, so here we are going to explore these different kinds of Hamburger button effects in this article.<br \/>\n<!--more--><\/p>\n<p>In this demo, I&#8217;m going to target the child elements with the help of <code>:nth-child()<\/code> pseudo-element. So that It would be very easy for us to target each and every child elements inside the parent element without using <code>class<\/code> or <code>id<\/code>. and also I&#8217;m going to use a CSS3 <code>transition<\/code> property for a smooth transition.<\/p>\n<h3>let&#8217;s dig the code<\/h3>\n<p>Here I&#8217;m going to show eight different kinds of Hamburger button effects. So the markup and CSS stylings will be similar for all eight Hamburger button effects, but for achieving different effects, As I mentioned above I&#8217;m going to use <code>:nth-child<\/code> pseudo-element to target each and every child elements.<\/p>\n<ol>\n<li>First, consider a div element with <code>class:hamburger1<\/code> and inside the parent div element, consider a three more div elements without class<code> or <\/code>id.<\/li>\n<li>Now style the parent div element with <code>class:hamburger1<\/code> by setting the background color, width, padding, and margin.\n<pre>.hamburger1{\n  background: #49b293;\n  width: 55px;\n  padding: 25px;\n  float: left;\n  margin: 70px;\n  cursor: pointer;\n}\n<\/pre>\n<\/li>\n<li>Now style the child div elements by setting its width, height, &nbsp;background color and margin\n<pre>.hamburger1 div{\n  height: 5px;\n  background: #fff;\n  width: 55px;\n  margin: 5px 0px;\n  transition: all 0.5s;\n}\n<\/pre>\n<\/li>\n<\/ol>\n<p>Above basic stylings will be same for all Hamburger button effects, just we need to change the parent div elements <code>class<\/code> that&#8217;s it.<\/p>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/i.imgur.com\/0rxkWXk.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, <strong>resize<\/strong> in the <strong>width<\/strong> of the child elements should occur. for achieving this effect I&#8217;m going to target all child elements using <code>nth-child<\/code> pseudo-element.<\/p>\n<pre>.hamburger1:hover div:nth-child(1) {\n  width: 20px;\n  transition: all 0.5s;\n}\n\n.hamburger1:hover div:nth-child(2) {\n  width: 35px;\n  transition: all 0.5s;\n}\n\n.hamburger1:hover div:nth-child(3) {\n  width: 50px;\n  transition: all 0.5s;\n}<\/pre>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/i.imgur.com\/cNVsbqT.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, all three child div elements should <strong>rotate<\/strong> to <strong>90 degrees<\/strong>. for achieving this effect, I&#8217;m going to use the CSS3 <strong>translate<\/strong> and <strong>rotate methods<\/strong> with the help of transform property.<\/p>\n<pre>.hamburger2:hover div:nth-child(1) {\n  transform: translate(15px, 10px) rotate(90deg);\n  transition: all 0.5s;\n}\n\n.hamburger2:hover div:nth-child(2) {\n  transform: rotate(90deg);\n  transition: all 0.5s;\n}\n\n.hamburger2:hover div:nth-child(3) {\n  transform: translate(-15px, -10px) rotate(90deg);\n  transition: all 0.5s;\n}<\/pre>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/i.imgur.com\/oJKm3R9.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, first and last child div elements should combine with second child element. for achieving this effect, I&#8217;m going to use the CSS3 <strong>translate method<\/strong> with the help of transform property.<\/p>\n<pre>.hamburger3:hover div:nth-child(1) {\n  transform: translate(0px, 10px);\n  transition: all 0.5s;\n}\n\n.hamburger3:hover div:nth-child(3) {\n  transform: translate(0px, -10px);\n  transition: all 0.5s;\n}<\/pre>\n<!-- \/112371330\/post-banner -->\r\n<div class=\"ad-wrapper\">\r\n<div id='div-gpt-ad-1595500140430-0' style='width: 250px; height: 250px;'>\r\n  <script>\r\n    googletag.cmd.push(function() { googletag.display('div-gpt-ad-1595500140430-0'); });\r\n  <\/script>\r\n<\/div>\r\n<\/div>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/imgur.com\/jMFC3ip.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, all three child div elements should form a <strong>plus symbol<\/strong>. for achieving this effect, I&#8217;m going to use the CSS3 <strong>translate<\/strong> and<strong> rotate methods<\/strong> with the help of transform property.<\/p>\n<pre>.hamburger4:hover div:nth-child(1) {\n  transform: translate(0px, 10px) rotate(0deg);\n  transition: all 0.5s;\n}\n\n.hamburger4:hover div:nth-child(2) {\n  transform: rotate(90deg);\n  transition: all 0.5s;\n}\n\n.hamburger4:hover div:nth-child(3) {\n  transform: translate(0px, -10px) rotate(0deg);\n  transition: all 0.5s;\n}<\/pre>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/imgur.com\/U4YJzMN.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, all three child div elements should form a <strong>Not equal to symbol<\/strong>. for achieving this effect, I&#8217;m going to use the CSS3 <strong>translate<\/strong> and <strong>rotate methods<\/strong> with the help of transform property.<\/p>\n<pre>.hamburger5:hover div:nth-child(1) {\n  transform: translate(0px, 5px) rotate(0deg);\n  transition: all 0.5s;\n}\n\n.hamburger5:hover div:nth-child(2) {\n  transform: rotate(45deg);\n  transition: all 0.5s;\n}\n\n.hamburger5:hover div:nth-child(3) {\n  transform: translate(0px, -5px) rotate(0deg);\n  transition: all 0.5s;\n}<\/pre>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/imgur.com\/sw68TvM.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, all three child div elements should form an <strong>Inverted Not equal to symbol<\/strong>. for achieving this effect, I&#8217;m going to use the <strong>CSS3 translate<\/strong> and <strong>rotate methods<\/strong> with the help of transform property.<\/p>\n<pre>.hamburger6:hover div:nth-child(1) {\n  transform: translate(0px, 5px) rotate(0deg);\n  transition: all 0.5s;\n}\n\n.hamburger6:hover div:nth-child(2) {\n  transform: rotate(-45deg);\n  transition: all 0.5s;\n}\n\n.hamburger6:hover div:nth-child(3) {\n  transform: translate(0px, -5px) rotate(0deg);\n  transition: all 0.5s;\n}<\/pre>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/imgur.com\/yGzu4YZ.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, all three child div elements should form an <strong>Inverted V symbol<\/strong>. for achieving this effect, I&#8217;m going to use the CSS3 <strong>translate<\/strong> and <strong>rotate methods<\/strong> with the help of transform property.<\/p>\n<pre>.hamburger7:hover div:nth-child(1) {\n  width:40px;\n  transform: translate(-5px, 10px) rotate(-50deg);\n  transition: all 0.5s;\n}\n\n.hamburger7:hover div:nth-child(2) {\n  opacity:0;\n  transition: all 0.5s;\n}\n\n.hamburger7:hover div:nth-child(3) {\n  width:40px;\n  transform: translate(18px, -10px) rotate(50deg);\n  transition: all 0.5s;\n}<\/pre>\n<p><img decoding=\"async\" style=\"width: 180px; height: 150px;\" src=\"https:\/\/imgur.com\/ctRYkZb.jpg\" alt=\"Hamburger navigation bar 2\"><\/p>\n<p>In this effect, whenever a visitor hovers over the button, all three child div elements should form a <strong>V symbol<\/strong>. for achieving this effect, I&#8217;m going to use the CSS3 <strong>translate<\/strong> and <strong>rotate methods<\/strong> with the help of transform property.<\/p>\n<pre>.hamburger8:hover div:nth-child(1) {\n  width:40px;\n  transform: translate(-5px, 10px) rotate(50deg);\n  transition: all 0.5s;\n}\n\n.hamburger8:hover div:nth-child(2) {\n  opacity:0;\n  transition: all 0.5s;\n}\n\n.hamburger8:hover div:nth-child(3) {\n  width:40px;\n  transform: translate(18px, -10px) rotate(-50deg);\n  transition: all 0.5s;\n}\n<\/pre>\n<!-- \/112371330\/post-rectange -->\r\n<div class=\"ad-wrapper\">\r\n<div id='div-gpt-ad-1595415581471-0' style='width: 300px; height: 250px;'>\r\n  <script>\r\n    googletag.cmd.push(function() { googletag.display('div-gpt-ad-1595415581471-0'); });\r\n  <\/script>\r\n<\/div>\r\n<\/div>\n<h4>check out the demo<\/h4>\n<p class='codepen'  data-height='344' data-theme-id='0' data-slug-hash='rmxOzz' data-default-tab='result' data-animations='run' data-editable='' data-embed-version='2'>\nSee the Pen Hamburger button part \u2013 2  by rajeshdn (@cool_lazyboy) on CodePen.<\/p>\n\n<!-- \/112371330\/after-post -->\r\n<div class=\"ad-wrapper\">\r\n<div id='div-gpt-ad-1595272670647-0' style='width: 750px; height: 100px;'>\r\n  <script>\r\n    googletag.cmd.push(function() { googletag.display('div-gpt-ad-1595272670647-0'); });\r\n  <\/script>\r\n<\/div>\r\n<\/div>\n<div style=\"margin-top: 15px; margin-bottom: 15px;\" class=\"sharethis-inline-share-buttons\" ><\/div>","protected":false},"excerpt":{"rendered":"<p>Some time ago, I wrote an article on&nbsp;hamburger button. where I&#8217;ve shown how to create a very basic and simple hamburger button effect. In this&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":[50,47],"class_list":["post-1393","post","type-post","status-publish","format-standard","hentry","category-ui-school","tag-css3","tag-hamburger-button"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Hamburger button effects - Part 2 - 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\/hamburger-buttons\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Hamburger button effects - Part 2 - Coding is Love\" \/>\n<meta property=\"og:description\" content=\"Some time ago, I wrote an article on&nbsp;hamburger button. where I&#8217;ve shown how to create a very basic and simple hamburger button effect. In this&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codingislove.com\/hamburger-buttons\/\" \/>\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-05-31T07:14:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-22T13:50:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i.imgur.com\/5zwTX76.jpg\" \/>\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\/hamburger-buttons\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/\"},\"author\":{\"name\":\"Rajesh DN\",\"@id\":\"https:\/\/codingislove.com\/#\/schema\/person\/9070020f6a2366f68e903ed60a9a26e4\"},\"headline\":\"Hamburger button effects &#8211; Part 2\",\"datePublished\":\"2017-05-31T07:14:15+00:00\",\"dateModified\":\"2020-07-22T13:50:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/\"},\"wordCount\":628,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/codingislove.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i.imgur.com\/5zwTX76.jpg\",\"keywords\":[\"css3\",\"hamburger button\"],\"articleSection\":[\"UI School\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codingislove.com\/hamburger-buttons\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/\",\"url\":\"https:\/\/codingislove.com\/hamburger-buttons\/\",\"name\":\"Hamburger button effects - Part 2 - Coding is Love\",\"isPartOf\":{\"@id\":\"https:\/\/codingislove.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i.imgur.com\/5zwTX76.jpg\",\"datePublished\":\"2017-05-31T07:14:15+00:00\",\"dateModified\":\"2020-07-22T13:50:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codingislove.com\/hamburger-buttons\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage\",\"url\":\"https:\/\/i.imgur.com\/5zwTX76.jpg\",\"contentUrl\":\"https:\/\/i.imgur.com\/5zwTX76.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codingislove.com\/hamburger-buttons\/#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\":\"Hamburger button effects &#8211; Part 2\"}]},{\"@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":"Hamburger button effects - Part 2 - 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\/hamburger-buttons\/","og_locale":"en_US","og_type":"article","og_title":"Hamburger button effects - Part 2 - Coding is Love","og_description":"Some time ago, I wrote an article on&nbsp;hamburger button. where I&#8217;ve shown how to create a very basic and simple hamburger button effect. In this&hellip;","og_url":"https:\/\/codingislove.com\/hamburger-buttons\/","og_site_name":"Coding is Love","article_publisher":"https:\/\/facebook.com\/codingislove\/","article_published_time":"2017-05-31T07:14:15+00:00","article_modified_time":"2020-07-22T13:50:50+00:00","og_image":[{"url":"https:\/\/i.imgur.com\/5zwTX76.jpg","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\/hamburger-buttons\/#article","isPartOf":{"@id":"https:\/\/codingislove.com\/hamburger-buttons\/"},"author":{"name":"Rajesh DN","@id":"https:\/\/codingislove.com\/#\/schema\/person\/9070020f6a2366f68e903ed60a9a26e4"},"headline":"Hamburger button effects &#8211; Part 2","datePublished":"2017-05-31T07:14:15+00:00","dateModified":"2020-07-22T13:50:50+00:00","mainEntityOfPage":{"@id":"https:\/\/codingislove.com\/hamburger-buttons\/"},"wordCount":628,"commentCount":2,"publisher":{"@id":"https:\/\/codingislove.com\/#organization"},"image":{"@id":"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage"},"thumbnailUrl":"https:\/\/i.imgur.com\/5zwTX76.jpg","keywords":["css3","hamburger button"],"articleSection":["UI School"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codingislove.com\/hamburger-buttons\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codingislove.com\/hamburger-buttons\/","url":"https:\/\/codingislove.com\/hamburger-buttons\/","name":"Hamburger button effects - Part 2 - Coding is Love","isPartOf":{"@id":"https:\/\/codingislove.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage"},"image":{"@id":"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage"},"thumbnailUrl":"https:\/\/i.imgur.com\/5zwTX76.jpg","datePublished":"2017-05-31T07:14:15+00:00","dateModified":"2020-07-22T13:50:50+00:00","breadcrumb":{"@id":"https:\/\/codingislove.com\/hamburger-buttons\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codingislove.com\/hamburger-buttons\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codingislove.com\/hamburger-buttons\/#primaryimage","url":"https:\/\/i.imgur.com\/5zwTX76.jpg","contentUrl":"https:\/\/i.imgur.com\/5zwTX76.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/codingislove.com\/hamburger-buttons\/#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":"Hamburger button effects &#8211; Part 2"}]},{"@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\/1393","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=1393"}],"version-history":[{"count":0,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/posts\/1393\/revisions"}],"wp:attachment":[{"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/media?parent=1393"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/categories?post=1393"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codingislove.com\/wp-json\/wp\/v2\/tags?post=1393"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}