{"id":10333,"date":"2024-03-03T10:30:00","date_gmt":"2024-03-03T10:30:00","guid":{"rendered":"https:\/\/codehim.com\/?p=10333"},"modified":"2024-03-04T08:30:48","modified_gmt":"2024-03-04T03:30:48","slug":"circular-scroll-indicator-using-pure-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/","title":{"rendered":"Circular Scroll Indicator Using Pure CSS"},"content":{"rendered":"<p>This Pure CSS code snippet helps you to create a circular scroll indicator. It visualizes scrolling progress dynamically. The indicator animates as you scroll down a page, showcasing a timer-like visualization. This is helpful for indicating scrolling progress visually.<\/p>\n<p>You can use this code on websites to add a <a href=\"https:\/\/codehim.com\/vanilla-javascript\/scroll-progress-bar-in-javascript\/\" target=\"_blank\" rel=\"noopener\">visual scroll indicator<\/a>. It helps users track their progress while scrolling, enhancing the overall user experience.<\/p>\n<h2>How to Create Circular Scroll Indicator Using Pure CSS<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/meyerweb.com\/eric\/tools\/css\/reset\/\" target=\"_blank\" rel=\"noopener\">Reset CSS<\/a> by adding the following CDN link into the head tag of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/meyer-reset\/2.0\/reset.min.css\"&gt;<\/pre>\n<p>2. Set up the basic HTML structure, including a warning for unsupported browsers and the circular scroll indicator container. Place the warning inside a <code>&lt;div&gt;<\/code> with the class &#8220;warning&#8221; and the indicator within a <code>&lt;figure&gt;<\/code> with the class &#8220;component.&#8221;<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;h2&gt; Scroll down &lt;\/h2&gt;\r\n&lt;div class=\"warning\"&gt;\r\n  &lt;p&gt;&#x26a0;&#xfe0f; Scroll-driven animations are not supported in this browser. Try this demo in Chrome 115+.&lt;\/p&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;figure class=\"component\" aria-hidden=\"true\" webc:root=\"override\"&gt;\r\n  &lt;div class=\"timer-wrapper\"&gt;\r\n    &lt;svg class=\"timer\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" fill=\"currentcolor\" viewBox=\"0 0 256 256\"&gt;\r\n      &lt;rect width=\"256\" height=\"256\" fill=\"none\"&gt;&lt;\/rect&gt;\r\n      &lt;circle cx=\"128\" cy=\"128\" r=\"88\" fill=\"var(--color-theme)\"&gt;&lt;\/circle&gt;\r\n      &lt;circle cx=\"128\" cy=\"128\" r=\"88\" fill=\"none\" stroke=\"currentcolor\" stroke-miterlimit=\"10\" stroke-width=\"16\"&gt;&lt;\/circle&gt;\r\n      &lt;line class=\"timer-hand\" x1=\"128\" y1=\"128\" x2=\"167.6\" y2=\"88.4\" fill=\"none\" stroke=\"currentcolor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"&gt;&lt;\/line&gt;\r\n      &lt;line class=\"timer-switch\" x1=\"104\" y1=\"8\" x2=\"152\" y2=\"8\" fill=\"none\" stroke=\"currentcolor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"16\"&gt;&lt;\/line&gt;\r\n    &lt;\/svg&gt;\r\n  &lt;\/div&gt;\r\n  &lt;figcaption class=\"caption\"&gt;&lt;\/figcaption&gt;\r\n&lt;\/figure&gt;\r\n<\/pre>\n<p>3. Apply styles to create the circular scroll indicator and customize its appearance. Set up root-level CSS variables for background color, text color, and theme colors to customize the indicator&#8217;s appearance.<\/p>\n<p>Utilize CSS animations to bring the circular scroll indicator to life. The code includes keyframes for progress, turning upright, and plunging animations.<\/p>\n<pre class=\"prettyprint linenums lang-css\">:root {\r\n  --color-bg: #fffefd;\r\n  --color-text: #020617;\r\n  --color-theme: #ffedd5;\r\n  --color-theme-accent: #fed7aa;\r\n}\r\n\r\n@property --progress {\r\n  syntax: \"&lt;integer&gt;\";\r\n  initial-value: 0;\r\n  inherits: false;\r\n}\r\n\r\nbody {\r\n  color: var(--color-text);\r\n  background-color: var(--color-bg);\r\n  font-family: system-ui, sans-serif;\r\n}\r\n\r\n.component {\r\n  --size: 30vmin;\r\n\r\n  display: grid;\r\n  grid-template-areas:\r\n    \"timer\"\r\n    \"caption\";\r\n  place-items: center;\r\n  place-content: center;\r\n  gap: 0.2em;\r\n  position: fixed;\r\n  inset: 0;\r\n  margin: auto;\r\n}\r\n\r\n.timer-wrapper {\r\n  grid-area: timer;\r\n  display: grid;\r\n  place-items: center;\r\n  place-content: center;\r\n  grid-template-areas: \"container\";\r\n  width: var(--size);\r\n  height: var(--size);\r\n  border-radius: 50%;\r\n  background: conic-gradient(\r\n    from 45deg,\r\n    var(--color-theme-accent) calc(var(--progress) * 1%),\r\n    transparent 0\r\n  );\r\n}\r\n\r\n.timer-wrapper &gt; * {\r\n  grid-area: container;\r\n}\r\n\r\n.timer {\r\n  width: calc(var(--size) \/ 1.2);\r\n  height: calc(var(--size) \/ 1.2);\r\n}\r\n\r\n.caption {\r\n  grid-area: caption;\r\n}\r\n\r\n.caption::before,\r\n.caption::after {\r\n  margin-inline: auto;\r\n  content: counter(progress);\r\n  font-size: calc(0.6em + var(--size) \/ 6);\r\n  font-weight: bold;\r\n  text-align: center;\r\n  font-variant-numeric: tabular-nums;\r\n}\r\n\r\n.caption::after {\r\n  content: \"%\";\r\n}\r\n\r\n\/* Warning for unsupported browsers *\/\r\n.warning {\r\n  color: black;\r\n  background: papayawhip;\r\n  padding: 1rem;\r\n  line-height: 1.3;\r\n  text-align: center;\r\n}\r\n\r\n@supports (animation-timeline: scroll()) {\r\n  .warning {\r\n    display: none;\r\n  }\r\n\r\n  body {\r\n    height: 1000vh;\r\n  }\r\n\r\n  :is(.component, .timer-wrapper, .timer, .timer-hand, .timer-switch) {\r\n    -webkit-animation-fill-mode: both;\r\n            animation-fill-mode: both;\r\n    -webkit-animation-timing-function: linear;\r\n            animation-timing-function: linear;\r\n    animation-timeline: scroll();\r\n  }\r\n\r\n  .component {\r\n    --plunge-offset: 10rem;\r\n    --plunge-start: calc(100% - var(--plunge-offset) * 2);\r\n    --plunge-end: calc(100% - var(--plunge-offset));\r\n\r\n    -webkit-animation-name: progress;\r\n\r\n            animation-name: progress;\r\n    animation-range: 0 var(--plunge-start);\r\n    counter-reset: progress var(--progress);\r\n  }\r\n\r\n  .timer-wrapper {\r\n    -webkit-animation-name: progress, turn-upright;\r\n            animation-name: progress, turn-upright;\r\n    animation-range: 0 var(--plunge-start),\r\n      var(--plunge-start) var(--plunge-end);\r\n  }\r\n\r\n  .timer {\r\n    --plunge-depth: 0.25em;\r\n    transform-origin: 50% 0;\r\n    -webkit-animation-name: plunge;\r\n            animation-name: plunge;\r\n    animation-range: var(--plunge-start) var(--plunge-end);\r\n  }\r\n\r\n  .timer-switch {\r\n    --plunge-depth: 1em;\r\n    transform-origin: 50% 0;\r\n    -webkit-animation-name: plunge;\r\n            animation-name: plunge;\r\n    animation-range: var(--plunge-start) var(--plunge-end);\r\n  }\r\n\r\n  .timer-hand {\r\n    transform-origin: 50%;\r\n    rotate: calc((var(--progress) \/ 100) * 360deg);\r\n    -webkit-animation-name: progress;\r\n            animation-name: progress;\r\n    animation-range: 0 var(--plunge-start);\r\n  }\r\n\r\n  @-webkit-keyframes progress {\r\n    to {\r\n      --progress: 100;\r\n    }\r\n  }\r\n\r\n  @keyframes progress {\r\n    to {\r\n      --progress: 100;\r\n    }\r\n  }\r\n\r\n  @-webkit-keyframes turn-upright {\r\n    from {\r\n      rotate: -10deg;\r\n    }\r\n    to {\r\n      rotate: 0;\r\n    }\r\n  }\r\n\r\n  @keyframes turn-upright {\r\n    from {\r\n      rotate: -10deg;\r\n    }\r\n    to {\r\n      rotate: 0;\r\n    }\r\n  }\r\n\r\n  @-webkit-keyframes plunge {\r\n    50% {\r\n      translate: 0 var(--plunge-depth);\r\n    }\r\n  }\r\n\r\n  @keyframes plunge {\r\n    50% {\r\n      translate: 0 var(--plunge-depth);\r\n    }\r\n  }\r\n\r\n  @-webkit-keyframes fade-out {\r\n    from {\r\n      opacity: 1;\r\n    }\r\n    to {\r\n      opacity: 0;\r\n    }\r\n  }\r\n\r\n  @keyframes fade-out {\r\n    from {\r\n      opacity: 1;\r\n    }\r\n    to {\r\n      opacity: 0;\r\n    }\r\n  }\r\n}<\/pre>\n<p>Copy and paste the above HTML and CSS code into your project. Adjust the CSS variables to match your site&#8217;s color scheme. Test the indicator in a compatible browser, preferably Chrome 115+, for the optimal scrolling experience.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created a Circular Scroll Indicator Using Pure CSS. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This Pure CSS code snippet helps you to create a circular scroll indicator. It visualizes scrolling progress dynamically. The indicator&#8230;<\/p>\n","protected":false},"author":1,"featured_media":10337,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[78],"class_list":["post-10333","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5-css3","tag-scrolling"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Circular Scroll Indicator Using Pure CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Circular Scroll Indicator Using Pure CSS. 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\/html5-css3\/circular-scroll-indicator-using-pure-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Circular Scroll Indicator Using Pure CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Circular Scroll Indicator Using Pure CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/\" \/>\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-03-03T10:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-04T03:30:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"980\" \/>\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\/html5-css3\/circular-scroll-indicator-using-pure-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Circular Scroll Indicator Using Pure CSS\",\"datePublished\":\"2024-03-03T10:30:00+00:00\",\"dateModified\":\"2024-03-04T03:30:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/\"},\"wordCount\":254,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png\",\"keywords\":[\"Scrolling Effects\"],\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/\",\"name\":\"Circular Scroll Indicator Using Pure CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png\",\"datePublished\":\"2024-03-03T10:30:00+00:00\",\"dateModified\":\"2024-03-04T03:30:48+00:00\",\"description\":\"Here is a free code snippet to create a Circular Scroll Indicator Using Pure CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png\",\"width\":1280,\"height\":980,\"caption\":\"Circular Scroll Indicator Using Pure CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5 &amp; CSS3\",\"item\":\"https:\/\/codehim.com\/category\/html5-css3\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Circular Scroll Indicator Using Pure CSS\"}]},{\"@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":"Circular Scroll Indicator Using Pure CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Circular Scroll Indicator Using Pure CSS. 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\/html5-css3\/circular-scroll-indicator-using-pure-css\/","og_locale":"en_US","og_type":"article","og_title":"Circular Scroll Indicator Using Pure CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Circular Scroll Indicator Using Pure CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-03-03T10:30:00+00:00","article_modified_time":"2024-03-04T03:30:48+00:00","og_image":[{"width":1280,"height":980,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.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\/html5-css3\/circular-scroll-indicator-using-pure-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Circular Scroll Indicator Using Pure CSS","datePublished":"2024-03-03T10:30:00+00:00","dateModified":"2024-03-04T03:30:48+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/"},"wordCount":254,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png","keywords":["Scrolling Effects"],"articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/","url":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/","name":"Circular Scroll Indicator Using Pure CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png","datePublished":"2024-03-03T10:30:00+00:00","dateModified":"2024-03-04T03:30:48+00:00","description":"Here is a free code snippet to create a Circular Scroll Indicator Using Pure CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Circular-Scroll-Indicator-Using-Pure-CSS.png","width":1280,"height":980,"caption":"Circular Scroll Indicator Using Pure CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/circular-scroll-indicator-using-pure-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"HTML5 &amp; CSS3","item":"https:\/\/codehim.com\/category\/html5-css3\/"},{"@type":"ListItem","position":3,"name":"Circular Scroll Indicator Using Pure CSS"}]},{"@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":1262,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10333","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=10333"}],"version-history":[{"count":1,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10333\/revisions"}],"predecessor-version":[{"id":11288,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10333\/revisions\/11288"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/10337"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=10333"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=10333"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=10333"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}