{"id":4557,"date":"2024-01-20T17:09:00","date_gmt":"2024-01-20T17:09:00","guid":{"rendered":"https:\/\/codehim.com\/?p=4557"},"modified":"2024-01-22T15:47:06","modified_gmt":"2024-01-22T10:47:06","slug":"animated-image-slider-using-jquery-css3","status":"publish","type":"post","link":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/","title":{"rendered":"Animated Image Slider using jQuery &#038; CSS3"},"content":{"rendered":"<section class=\"cm-intro\">\n<div class=\"first-pera\">\n<p>The &#8220;silder&#8221; is a thin and basic jQuery plugin that allows you to create animated image slider. You just need to place your images in slider&#8217;s HTML structure. After that, this plugin render a beautiful fullscreen animated image slider with next previous buttons. Moreover, it can be also customized with additional CSS according to your needs.<\/p>\n<\/div>\n<div class=\"first-pera-ad\">\n[intro_ad]\n<\/div>\n<\/section>\n<div class=\"cm-box\">\n<h2 class=\"box-title\">Plugin Overview and Preview<\/h2>\n<section class=\"overview-wrapper\">\n<div class=\"code-overview\">\n<table>\n<tbody>\n<tr>\n<td> <i class=\"fa fa-plug\"><\/i> Plugin:<\/td>\n<td>silder<\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-user\"><\/i> Author:<\/td>\n<td>ChiangYuChi<\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-folder\"><\/i> Category:<\/td>\n<td> <a href=\"\/carousel\/\">Carousel<\/a> <\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-clock-o\"><\/i> Published: <\/td>\n<td> January 20, 2024 <\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-file-code-o\"><\/i> File Type:<\/td>\n<td>zip archive (HTML, CSS &#038; JavaScript )<\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-file-archive-o\"><\/i> Package Size:<\/td>\n<td>File path is not allowed!<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-link\"><\/i> Dependencies:<\/td>\n<td><a title=\"jQuery is a lightweight, write less, do more JavaScript library.\" href=\"https:\/\/jquery.com\/download\/\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\">jQuery 3.0 <\/a> or Latest version<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<div class=\"code-preview\">\n<figure class=\"cm-plugin-preview\"> <div id=\"featured-img-id\"><img decoding=\"async\" src=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png\" alt=\"Animated Image Slider using jQuery &amp; CSS3\" \/><\/div> <\/figure>\n<\/div>\n<div class=\"cm-clear\"><\/div>\n<div class=\"plugin-meta\">\n<div class=\"cm-meta post-publish-date\"> Last Modified: <time> [last-modified] <\/time><\/div>\n<div class=\"cm-meta plugin-licence\" title=\"Licence\"> MIT <\/div>\n<div class=\"cm-meta code-fork\"> <a href=\"https:\/\/github.com\/ChiangYuChi\/jquery-silder\" target=\"_blank\" title=\"Fork on GitHub\" rel=\"noopener noreferrer\"> Fork on GitHub<\/a> <\/div>\n<div class=\"cm-meta post-views\" title=\"Views\"> 5,042 <\/div>\n<\/div>\n<\/section>\n<\/div>\n<section class=\"cm-btn-group\">\n<div class=\"cd-action down-btns\">\n<a title=\"View live preview\" class=\"btn demo\" target=\"_blank\" href=\"\/demo\/animated-image-slider-jquery\" rel=\"noopener noreferrer\"> Demo <\/a> <a title=\"Download distributed version\" class=\"btn download\" href=\"\/download\/animated-image-slider-jquery.zip\" rel=\"nofollow\"> Download <\/a> <a title=\"Download latest version of this plugin\" href=\"https:\/\/github.com\/ChiangYuChi\/jquery-silder\/archive\/master.zip\" class=\"btn btn-master-download\" rel=\"nofollow noopener noreferrer\"> Download Master Repository <\/a>\n<\/div>\n<div class=\"codehim-share\">\n<span class=\"share-title\">Share this:<\/span> <span class=\"share-btn-container\"> <\/span>\n<\/div>\n<\/section>\n<section class=\"code-quality cm-box\">\n<div class=\"ad-area\">\n[ad_after_overview]\n<\/div>\n<div class=\"rating-area\">\n<h3 class=\"box-title\"> Code Rating <\/h3>\n<div class=\"box-inner code-rating\">\n[site_reviews_summary assigned_to=&#8221;post_id&#8221;]\n<\/div>\n<\/div>\n<\/section>\n<div class=\"cm-clear\"><\/div>\n<section class=\"cm-tabs\">\n<ul class=\"cm-tab-names\">\n<li><a title=\"Documentation\" href=\"#documentation\" class=\"tab-name tab-docs active\"> Documentation <\/a><\/li>\n<li><a title=\"Advance Configuration Options\" href=\"#config-option\" class=\"tab-name tab-config\"> Configuration Options <\/a><\/li>\n<li><a title=\"Changelog\" href=\"#changelog\" class=\"tab-name tab-changelog\"> Changelog <\/a><\/li>\n<li><a title=\"Developer Reviews\" href=\"#reviews\" class=\"tab-name tab-reviews\"> Developer Reviews <\/a><\/li>\n<\/ul>\n<div class=\"tab show\" id=\"documentation\">\n<h2 class=\"tab-title\"> How to Create Animated Image Slider Using Jquery <\/h2>\n<p>1. In the initial step,  load the jQuery (latest version)  into your HTML document.<\/p>\n<pre class=\"prettyprint lang-html linenums\">\r\n&lt;!-- jQuery --&gt;\r\n&lt;script src=\"https:\/\/code.jquery.com\/jquery-3.4.1.min.js\"&gt;&lt;\/script&gt;\r\n<\/pre>\n<p> 2. In next step, include plugin assets (from downloaded directory) in your website\/app.<\/p>\n<pre class=\"prettyprint lang-html linenums\">&lt;!-- animated silder CSS --&gt;\r\n&lt;link rel=\"stylesheet\" href=\"css\/all.css\"&gt;\r\n&lt;!-- animayed silder JS --&gt;\r\n&lt;script src=\"js\/all.js\"&gt;&lt;\/script&gt;<\/pre>\n<p> 3. Create HTML structure like below:<\/p>\n<pre class=\"prettyprint lang-html linenums\">&lt;div id=\"main\"&gt;\r\n        &lt;div id=\"silder\"&gt;\r\n            &lt;img src=\".\/img\/bg1.jpg\" class=\"silder-img\"&gt;\r\n            &lt;img src=\".\/img\/bg2.jpg\" class=\"silder-img\"&gt;\r\n            &lt;img src=\".\/img\/bg3.jpg\" class=\"silder-img\"&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;!-- Slider Buttons --&gt;\r\n&lt;div id=\"prvbtn\"&gt;&#8592&lt;\/div&gt;\r\n&lt;div id=\"nxtbtn\"&gt;&#8594&lt;\/div&gt;<\/pre>\n<p>The plugin will be auto initialized (activated) after including all assets. If you like this plugin don&#8217;t forget to rate this. <\/p>\n<\/div>\n<div class=\"tab\" id=\"changelog\">\n<h4 class=\"tab-title\"> Changelog <\/h4>\n<p><b>3\/11\/2019 <\/b><\/p>\n<ul>\n<li> CSS updated.<\/li>\n<\/ul>\n<p><b>17\/10\/2019<\/b><\/p>\n<ul>\n<li>Initial release.<\/li>\n<\/ul>\n<\/div>\n<div class=\"tab\" id=\"config-option\">\nNo config options!\n<\/div>\n<div class=\"tab\" id=\"reviews\">\n[site_reviews assigned_to=&#8221;post_id&#8221;]<\/p>\n<h5> Submit Your Review <\/h5>\n<p>[site_reviews_form assign_to=&#8221;post_id&#8221;]\n<\/p><\/div>\n<\/section>\n<div class=\"cm-box\">\n<div class=\"box-inner\">\n[ad_after_artical]\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The &#8220;silder&#8221; is a thin and basic jQuery plugin that allows you to create animated image slider. You just need&#8230;<\/p>\n","protected":false},"author":1,"featured_media":4558,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59],"tags":[79],"class_list":["post-4557","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-carousel","tag-slider"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Animated Image Slider using jQuery &amp; CSS3 &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is code snippet to create animated image slider using jQuery and CSS3. It make image slider with next prev buttons and animation. CSS jQuery carousel.\" \/>\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\/animated-image-slider-using-jquery-css3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Animated Image Slider using jQuery &amp; CSS3 &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is code snippet to create animated image slider using jQuery and CSS3. It make image slider with next prev buttons and animation. CSS jQuery carousel.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/\" \/>\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-20T17:09:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:47:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"962\" \/>\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\/animated-image-slider-using-jquery-css3\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Animated Image Slider using jQuery &#038; CSS3\",\"datePublished\":\"2024-01-20T17:09:00+00:00\",\"dateModified\":\"2024-01-22T10:47:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/\"},\"wordCount\":222,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png\",\"keywords\":[\"Image Sliders\"],\"articleSection\":[\"Carousel\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/\",\"url\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/\",\"name\":\"Animated Image Slider using jQuery & CSS3 &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png\",\"datePublished\":\"2024-01-20T17:09:00+00:00\",\"dateModified\":\"2024-01-22T10:47:06+00:00\",\"description\":\"Here is code snippet to create animated image slider using jQuery and CSS3. It make image slider with next prev buttons and animation. CSS jQuery carousel.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png\",\"width\":1280,\"height\":962,\"caption\":\"Animated Image Slider using jQuery & CSS3\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#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\":\"Animated Image Slider using jQuery &#038; CSS3\"}]},{\"@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":"Animated Image Slider using jQuery & CSS3 &#8212; CodeHim","description":"Here is code snippet to create animated image slider using jQuery and CSS3. It make image slider with next prev buttons and animation. CSS jQuery carousel.","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\/animated-image-slider-using-jquery-css3\/","og_locale":"en_US","og_type":"article","og_title":"Animated Image Slider using jQuery & CSS3 &#8212; CodeHim","og_description":"Here is code snippet to create animated image slider using jQuery and CSS3. It make image slider with next prev buttons and animation. CSS jQuery carousel.","og_url":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-20T17:09:00+00:00","article_modified_time":"2024-01-22T10:47:06+00:00","og_image":[{"width":1280,"height":962,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.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\/animated-image-slider-using-jquery-css3\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Animated Image Slider using jQuery &#038; CSS3","datePublished":"2024-01-20T17:09:00+00:00","dateModified":"2024-01-22T10:47:06+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/"},"wordCount":222,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png","keywords":["Image Sliders"],"articleSection":["Carousel"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/","url":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/","name":"Animated Image Slider using jQuery & CSS3 &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png","datePublished":"2024-01-20T17:09:00+00:00","dateModified":"2024-01-22T10:47:06+00:00","description":"Here is code snippet to create animated image slider using jQuery and CSS3. It make image slider with next prev buttons and animation. CSS jQuery carousel.","breadcrumb":{"@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-image-slider-with-animation.png","width":1280,"height":962,"caption":"Animated Image Slider using jQuery & CSS3"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/carousel\/animated-image-slider-using-jquery-css3\/#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":"Animated Image Slider using jQuery &#038; CSS3"}]},{"@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":5042,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4557","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=4557"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4557\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/4558"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=4557"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=4557"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=4557"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}