{"id":6778,"date":"2024-01-10T17:47:00","date_gmt":"2024-01-10T17:47:00","guid":{"rendered":"https:\/\/codehim.com\/?p=6778"},"modified":"2024-01-22T15:48:20","modified_gmt":"2024-01-22T10:48:20","slug":"simple-auto-playing-slideshow","status":"publish","type":"post","link":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/","title":{"rendered":"Simple Auto Playing Slideshow"},"content":{"rendered":"<p>This JavaScript code snippet helps you to create a simple auto playing image slideshow. It comes with a simple interface to play images with sliding effect. You can easily integrate this slideshow as a showcase or general purpose images slideshow.<\/p>\n<h2>How to Create Simple Auto Playing Slideshow<\/h2>\n<p>1. First of all, create the HTML structure as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">  &lt;h2&gt;Pure JavaScript Slider.&lt;\/h2&gt;\r\n&lt;h5&gt;No jQuery was harmed!&lt;\/h5&gt;\r\n\r\n&lt;div class=\"slider__container\"&gt;\r\n&lt;div class=\"slider\" data-js=\"sslide\"&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/eaa71c732cbee5701edb4e0e937feb3222ed4a20-1386257098\" \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/28b3b67fe9d1015a9738b3be7a8a7ae8f4a60421-1392731499\"\/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/3343d0501110d31ec2e424ebcf92106c7195587d-1389594002\" \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/b93b2e1e77cd05a6ec4139f5e31b9c8809223654-1385122399\" \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/5cacad00f9fb6574a1b58d76f55f87b0d972203e-1385563404\" \/&gt;  \r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/d3ee24ea591d90f690c3f2819878097cff8272f9-1384525350\" \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/e3b6546ac1dfa8b261da5c3dbb40449d6edef0bb-1381759073\" \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/7102e8edb21b3e5a31f8f9067d6b024c58c38137-1381507137\" \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/60e487d3a8683c8d83c75e8790f25cd822bb70ad-1381150604\" \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/bce02b5cec78a8fd45772530775ecc5fe610524a-1379255277\"  \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/506905a65fa0d57d71a0bf90c1741cb9120bf0c3-1378290101\"  \/&gt;\r\n  &lt;img src=\"http:\/\/cdn.eyeem.com\/thumb\/h\/800\/4c60d57c4d80c9d9a26bcd8882c6d4a1e7fa0b9a-1374858049\"  \/&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>2. After that, add the following CSS styles to your project:<\/p>\n<pre class=\"prettyprint linenums lang-css\">* {\r\n  margin: 0;\r\n  padding: 0;\r\n  -moz-box-sizing: border-box;\r\n  -webkit-box-sizing: border-box;\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody {\r\n  font: 1rem\/1.3 Arial, Helvetica, sans-serif;\r\n}\r\n\r\nh2, h5 {\r\n  text-align: center;\r\n}\r\n\r\nh5 {\r\n  text-transform: uppercase;\r\n  color: #aeaeae;\r\n}\r\n\r\n.slider__container {\r\n  width: 40em;\r\n  height: 25em;\r\n  margin: 1.5em auto;\r\n  overflow: hidden;\r\n}\r\n\r\n.slider img {\r\n  float: left;\r\n}<\/pre>\n<p>3. Finally, add the following JavaScript code and done.<\/p>\n<pre class=\"prettyprint linenums lang-js\">document.addEventListener('DOMContentLoaded', function() {\r\n  \/\/ sslider = Simple SLIDER\r\n  function sslider() {\r\n    \r\n    var current = 0,\r\n        i,\r\n        slider = document.querySelector('[data-js=\"sslide\"]'),\r\n        allImages =  slider.querySelectorAll('img'),\r\n        imgWidth = Math.ceil(100 \/ allImages.length),\r\n        sliderWidth = allImages.length * 100;\r\n    \r\n    slider.style.width = sliderWidth + '%';\r\n    \r\n    for(i = 0; i &lt;= allImages.length - 1; i++) {\r\n       allImages[i].style.width = imgWidth + '%';\r\n    }\r\n\r\n  function animateRight(cur) {\r\n      var i = imgWidth,\r\n          time = 50;\r\n      var animate = setInterval(function() {\r\n      if(i &lt;= sliderWidth) {\r\n        allImages[cur].style.marginLeft = \"-\" + i + \"%\";\r\n        i--;\r\n      } else {\r\n        clearInterval(animate);\r\n      }\r\n      }, time);  \r\n   } \r\n    \r\n    function reset() {\r\n      for(i = 0; i &lt;= allImages.length - 1; i++) {\r\n        animateRight(i);\r\n      }\r\n      \/\/ resseting the current image to the first image\r\n      current = 0;\r\n    }    \r\n    \r\n    function animateLeft(cur) {\r\n      var i = 0,\r\n          time = 50;\r\n      var animate = setInterval(function() {\r\n      if(i &lt;= imgWidth) {\r\n        allImages[cur].style.marginLeft = \"-\" + i  + \"%\";\r\n        i++;\r\n      } else {\r\n        clearInterval(animate);\r\n      }\r\n      }, time);  \r\n   }\r\n    \r\n    setInterval(function () {\r\n      if(current &lt;= allImages.length - 2) {\r\n        animateLeft(current);\r\n        current++;\r\n        \r\n      } else {\r\n        reset();\r\n      }\r\n    }, 3000);\r\n} \/\/ end\r\n sslider();\r\n});<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this slideshow code snippet into your project. If you have any questions or facing any issues, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This JavaScript code snippet helps you to create a simple auto playing image slideshow. It comes with a simple interface&#8230;<\/p>\n","protected":false},"author":1,"featured_media":6792,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59],"tags":[66],"class_list":["post-6778","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-carousel","tag-slideshow"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Simple Auto Playing Slideshow &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a lightweight JavaScript code snippet to create a simple auto playing slideshow. You can view demo and download 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:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Simple Auto Playing Slideshow &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a lightweight JavaScript code snippet to create a simple auto playing slideshow. You can view demo and download source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-10T17:47:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:48:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Simple Auto Playing Slideshow\",\"datePublished\":\"2024-01-10T17:47:00+00:00\",\"dateModified\":\"2024-01-22T10:48:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\"},\"wordCount\":107,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png\",\"keywords\":[\"Slideshow\"],\"articleSection\":[\"Carousel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\",\"url\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\",\"name\":\"Simple Auto Playing Slideshow &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png\",\"datePublished\":\"2024-01-10T17:47:00+00:00\",\"dateModified\":\"2024-01-22T10:48:20+00:00\",\"description\":\"Here is a lightweight JavaScript code snippet to create a simple auto playing slideshow. You can view demo and download source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png\",\"width\":1280,\"height\":960,\"caption\":\"Simple Auto Playing Slideshow\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Carousel\",\"item\":\"https:\/\/codehim.com\/category\/carousel\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Simple Auto Playing Slideshow\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Simple Auto Playing Slideshow &#8212; CodeHim","description":"Here is a lightweight JavaScript code snippet to create a simple auto playing slideshow. You can view demo and download 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:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/","og_locale":"en_US","og_type":"article","og_title":"Simple Auto Playing Slideshow &#8212; CodeHim","og_description":"Here is a lightweight JavaScript code snippet to create a simple auto playing slideshow. You can view demo and download source code.","og_url":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T17:47:00+00:00","article_modified_time":"2024-01-22T10:48:20+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Simple Auto Playing Slideshow","datePublished":"2024-01-10T17:47:00+00:00","dateModified":"2024-01-22T10:48:20+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/"},"wordCount":107,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png","keywords":["Slideshow"],"articleSection":["Carousel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/","url":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/","name":"Simple Auto Playing Slideshow &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png","datePublished":"2024-01-10T17:47:00+00:00","dateModified":"2024-01-22T10:48:20+00:00","description":"Here is a lightweight JavaScript code snippet to create a simple auto playing slideshow. You can view demo and download source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Simple-Auto-Playing-Slidesh.png","width":1280,"height":960,"caption":"Simple Auto Playing Slideshow"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Carousel","item":"https:\/\/codehim.com\/category\/carousel\/"},{"@type":"ListItem","position":3,"name":"Simple Auto Playing Slideshow"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":4862,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6778","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=6778"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6778\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/6792"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=6778"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=6778"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=6778"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}