{"id":9869,"date":"2024-01-12T18:09:00","date_gmt":"2024-01-12T18:09:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9869"},"modified":"2024-01-22T16:12:51","modified_gmt":"2024-01-22T11:12:51","slug":"javascript-slideshow-with-glass-shadow-effect","status":"publish","type":"post","link":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/","title":{"rendered":"JavaScript Slideshow with Glass Shadow Effect"},"content":{"rendered":"<p>This JavaScript code snippet helps you to create a sleek image slideshow with a captivating <a href=\"https:\/\/codehim.com\/html5-css3\/css-glass-effect-for-div-element\/\" target=\"_blank\" rel=\"noopener\">glass shadow effect<\/a>. The HTML section defines the image container, while the CSS styling enhances the visuals. The JavaScript orchestrates the slideshow, smoothly transitioning between images every 2 seconds.<\/p>\n<p>The glass shadow effect is achieved through carefully crafted CSS properties. You can easily implement this code for a <a href=\"https:\/\/codehim.com\/vanilla-javascript\/3d-carousel-slider-javascript\/\" target=\"_blank\" rel=\"noopener\">stylish image showcase<\/a> on your webpage.<\/p>\n<h2>How to Create Javascript Slideshow With Glass Shadow Effect<\/h2>\n<p>1.\u00a0 First of all, copy the following HTML code and paste it into your HTML file where you want the slideshow to appear. The <code>&lt;div id=\"slideshow\"&gt;<\/code> element contains the images you want to showcase. Replace the <code>\"path\/to\/your-img.jpg\"<\/code> with the URL of your own images.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div id=\"slideshow\"&gt;\r\n  &lt;img class=\"is-active\" src=\"path\/to\/your-img.jpg\" alt=\"\" \/&gt;\r\n  &lt;img src=\"path\/to\/your-img.jpg\" alt=\"\" \/&gt;\r\n  &lt;img src=\"path\/to\/your-img.jpg\" alt=\"\" \/&gt;\r\n  &lt;img src=\"path\/to\/your-img.jpg\" alt=\"\" \/&gt;\r\n  &lt;img src=\"path\/to\/your-img.jpg\" alt=\"\" \/&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>2. Copy the following CSS code into your stylesheet (or within a <code>&lt;style&gt;<\/code> tag in your HTML file) to style the slideshow and create the glass shadow effect.<\/p>\n<pre class=\"prettyprint linenums lang-css\">*{\r\n  box-sizing: border-box;\r\n}\r\nbody{ \r\n  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(12%,#595959), color-stop(25%,#666666), color-stop(39%,#474747), color-stop(50%,#2c2c2c), color-stop(51%,#000000), color-stop(60%,#111111), color-stop(76%,#2b2b2b), color-stop(91%,#1c1c1c), color-stop(100%,#131313)) !important;\r\n}\r\n#slideshow{\r\n  height: 800px;\r\n  margin: auto;\r\n  max-width: 500px;\r\n  position: relative;\r\n}\r\n\r\n#slideshow img{\r\n  border-radius: 40px;\r\n  border: 20px solid #222;\r\n  height: auto;\r\n  opacity: 0;\r\n  left: 0;\r\n  position: absolute;\r\n  z-index: 1;\r\n  top: 0;\r\n  width: 100%;\r\n  -webkit-transition: 1s all;\r\n  -webkit-transform: scale(1);\r\n  -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(250, 250, 250, 0.1)));\r\n  -webkit-backface-visibility: hidden;\r\n}\r\n\r\n#slideshow .is-active{\r\n  opacity: 1;\r\n  left: 0;\r\n  top: 0;\r\n  z-index: 2;\r\n  -webkit-transition: 1s all;\r\n  -webkit-transform: scale(.8);\r\n  -webkit-backface-visibility: hidden;\r\n}<\/pre>\n<p>3. Finally, copy the JavaScript code into a new or existing script file. This script controls the slideshow&#8217;s functionality. It initiates the slideshow and sets a timer for automatic transitions every 2 seconds. You can adjust the interval by changing the <code>2000<\/code> in <code>setInterval<\/code> to your preferred duration in milliseconds.<\/p>\n<pre class=\"prettyprint linenums lang-js\">(function(){\r\n\r\n  var slideshow = document.getElementById('slideshow'),\r\n      imgs = slideshow.getElementsByTagName('img'),\r\n      count = 0,\r\n      timer,\r\n      previous;\r\n\r\n  function next(){\r\n    previous = count &gt; 0 ? count - 1 : 0;\r\n    imgs[ previous ].className = imgs[ previous ].className.replace(\/\\bis\\-active\\b\/i, '' );\r\n    \r\n    if( count &lt; imgs.length ){\r\n      imgs[ count ].className += 'is-active';\r\n      count++;\r\n    }  \r\n    else{\r\n      count = 0;\r\n      next();\r\n    }\r\n  }\r\n\r\n  next();\r\n\r\n  timer = setInterval(function(){\r\n    next();\r\n  }, 2000);\r\n\r\n})();<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created a Slideshow with the Glass Shadow Effect on your webpage. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This JavaScript code snippet helps you to create a sleek image slideshow with a captivating glass shadow effect. The HTML&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9884,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59],"tags":[66],"class_list":["post-9869","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>JavaScript Slideshow with Glass Shadow Effect &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a JavaScript Slideshow with Glass Shadow Effect. You can view demo and download 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:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Slideshow with Glass Shadow Effect &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a JavaScript Slideshow with Glass Shadow Effect. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/\" \/>\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-12T18:09:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:12:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"JavaScript Slideshow with Glass Shadow Effect\",\"datePublished\":\"2024-01-12T18:09:00+00:00\",\"dateModified\":\"2024-01-22T11:12:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/\"},\"wordCount\":226,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png\",\"keywords\":[\"Slideshow\"],\"articleSection\":[\"Carousel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/\",\"url\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/\",\"name\":\"JavaScript Slideshow with Glass Shadow Effect &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png\",\"datePublished\":\"2024-01-12T18:09:00+00:00\",\"dateModified\":\"2024-01-22T11:12:51+00:00\",\"description\":\"Here is a free code snippet to create a JavaScript Slideshow with Glass Shadow Effect. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png\",\"width\":1280,\"height\":960,\"caption\":\"JavaScript Slideshow with Glass Shadow Effect\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#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\":\"JavaScript Slideshow with Glass Shadow Effect\"}]},{\"@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":"JavaScript Slideshow with Glass Shadow Effect &#8212; CodeHim","description":"Here is a free code snippet to create a JavaScript Slideshow with Glass Shadow Effect. You can view demo and download 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:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Slideshow with Glass Shadow Effect &#8212; CodeHim","og_description":"Here is a free code snippet to create a JavaScript Slideshow with Glass Shadow Effect. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-12T18:09:00+00:00","article_modified_time":"2024-01-22T11:12:51+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"JavaScript Slideshow with Glass Shadow Effect","datePublished":"2024-01-12T18:09:00+00:00","dateModified":"2024-01-22T11:12:51+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/"},"wordCount":226,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png","keywords":["Slideshow"],"articleSection":["Carousel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/","url":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/","name":"JavaScript Slideshow with Glass Shadow Effect &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png","datePublished":"2024-01-12T18:09:00+00:00","dateModified":"2024-01-22T11:12:51+00:00","description":"Here is a free code snippet to create a JavaScript Slideshow with Glass Shadow Effect. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/JavaScript-Slideshow-with-Glass-Shadow-Effect.png","width":1280,"height":960,"caption":"JavaScript Slideshow with Glass Shadow Effect"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/carousel\/javascript-slideshow-with-glass-shadow-effect\/#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":"JavaScript Slideshow with Glass Shadow Effect"}]},{"@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":923,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9869","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=9869"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9869\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9884"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9869"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9869"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9869"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}