{"id":1620,"date":"2016-06-09T18:00:28","date_gmt":"2016-06-09T18:00:28","guid":{"rendered":"https:\/\/www.codexworld.com\/?p=1620"},"modified":"2025-08-27T06:17:53","modified_gmt":"2025-08-27T06:17:53","slug":"overlay-preloader-image-over-div-css","status":"publish","type":"post","link":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/","title":{"rendered":"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS"},"content":{"rendered":"<p>In the web application, the loading overlay effect is very useful when part of the page content is loaded dynamically from the backend. Generally, a loading GIF image with an overlay background is displayed over the HTML element while fetching content from the backend. Assume that a data list is displayed on the web page with pagination links. When the pagination links are clicked, another list of data is displayed. To fetch data from the backend script, the server takes some time, and the user does not understand what is happening behind the scenes. So, if you display a loading image over the content list, it will be helpful for the user to understand the data loading process.<\/p>\n<p>In this tutorial, we&#8217;ll provide a short code snippet to create an overlay element and display a preloader loading GIF over the content div using CSS. Not only for the list content, but you can also use it for every case where you want to add an overlay effect on the content and display loading animation.<\/p>\n<h2>Add Transparent Loading Overlay with Spinner Loader Image over DIV Element using CSS<\/h2>\n<p><b>HTML Code:<\/b><br \/>\nCreate an HTML element to contain the overlay wrapper with a loading image.<\/p>\n<ul>\n<li>The transparent overlay and loader image is attached to the <code>.overlay<\/code> element.<\/li>\n<\/ul>\n<pre style=\"color: rgb(95, 94, 78);\"><span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">div<\/span> <span class=\"hljs-attr\">class<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"content\"<\/span>&gt;<\/span>\r\n    <span class=\"hljs-comment\" style=\"color: rgb(108, 107, 90);\">&lt;!-- Loader element --&gt;<\/span>\r\n    <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">div<\/span> <span class=\"hljs-attr\">class<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"overlay\"<\/span>&gt;<\/span>\r\n        <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">div<\/span> <span class=\"hljs-attr\">class<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"overlay-content\"<\/span>&gt;<\/span><span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">img<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"images\/loader.gif\"<\/span> <span class=\"hljs-attr\">alt<\/span>=<span class=\"hljs-string\" style=\"color: rgb(125, 151, 38);\">\"Loading...\"<\/span>\/&gt;<\/span><span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;\/<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">div<\/span>&gt;<\/span>\r\n    <span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;\/<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">div<\/span>&gt;<\/span>\r\n    \r\n    <span class=\"hljs-comment\" style=\"color: rgb(108, 107, 90);\">&lt;!-- Page content goes here --&gt;<\/span>\r\n<span class=\"hljs-tag\" style=\"color: rgb(186, 98, 54);\">&lt;\/<span class=\"hljs-name\" style=\"color: rgb(186, 98, 54);\">div<\/span>&gt;<\/span><\/pre>\n<p><b>CSS Code:<\/b><br \/>\nDefine CSS code to apply styles to the overlay background and loading image over HTML element.<\/p>\n<pre style=\"color: rgb(68, 68, 68);\"><span class=\"hljs-selector-class\" style=\"color: rgb(136, 0, 0);\">.content<\/span>{\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">position<\/span>: relative;\r\n}\r\n<span class=\"hljs-selector-class\" style=\"color: rgb(136, 0, 0);\">.overlay<\/span>{\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">position<\/span>: absolute;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">left<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">0<\/span>; \r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">top<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">0<\/span>; \r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">right<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">0<\/span>; \r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">bottom<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">0<\/span>;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">z-index<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">2<\/span>;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">background-color<\/span>: <span class=\"hljs-built_in\" style=\"color: rgb(57, 115, 0);\">rgba<\/span>(255,255,255,0.8);\r\n}\r\n<span class=\"hljs-selector-class\" style=\"color: rgb(136, 0, 0);\">.overlay-content<\/span> {\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">position<\/span>: absolute;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">transform<\/span>: <span class=\"hljs-built_in\" style=\"color: rgb(57, 115, 0);\">translateY<\/span>(-50%);\r\n     <span class=\"hljs-attribute\" style=\"font-weight: 700;\">-webkit-transform<\/span>: <span class=\"hljs-built_in\" style=\"color: rgb(57, 115, 0);\">translateY<\/span>(-50%);\r\n     <span class=\"hljs-attribute\" style=\"font-weight: 700;\">-ms-transform<\/span>: <span class=\"hljs-built_in\" style=\"color: rgb(57, 115, 0);\">translateY<\/span>(-50%);\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">top<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">50%<\/span>;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">left<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">0<\/span>;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">right<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">0<\/span>;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">text-align<\/span>: center;\r\n    <span class=\"hljs-attribute\" style=\"font-weight: 700;\">color<\/span>: <span class=\"hljs-number\" style=\"color: rgb(136, 0, 0);\">#555<\/span>;\r\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>In the web application, the loading overlay effect is very useful when part of the page content is loaded dynamically from the backend. Generally, a loading GIF image with an overlay background is displayed over <\/p>\n","protected":false},"author":1,"featured_media":5421,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"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":[130],"tags":[124,179,199,197,198],"class_list":["post-1620","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html-css","tag-css","tag-html","tag-loader","tag-overlay","tag-preloader","cat-130-id","has_thumb"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Transparent Loading Overlay with Spinner Loader Image over DIV using CSS - CodexWorld<\/title>\n<meta name=\"description\" content=\"Overlay content or pre-loader image over Div - Example code snippet to display a loading image over the content using CSS.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS - CodexWorld\" \/>\n<meta property=\"og:description\" content=\"Overlay content or pre-loader image over Div - Example code snippet to display a loading image over the content using CSS.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/\" \/>\n<meta property=\"og:site_name\" content=\"CodexWorld\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codexworld\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/codexworld\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-09T18:00:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-27T06:17:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.codexworld.com\/wp-content\/uploads\/2016\/06\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"CodexWorld\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codexworldblog\" \/>\n<meta name=\"twitter:site\" content=\"@codexworldweb\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CodexWorld\" \/>\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:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/\"},\"author\":{\"name\":\"CodexWorld\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/person\\\/9da51d8fa3cdefeb5ec9c69136d4baf0\"},\"headline\":\"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS\",\"datePublished\":\"2016-06-09T18:00:28+00:00\",\"dateModified\":\"2025-08-27T06:17:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/\"},\"wordCount\":243,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png\",\"keywords\":[\"CSS\",\"HTML\",\"Loader\",\"Overlay\",\"Preloader\"],\"articleSection\":[\"HTML&amp;CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/\",\"name\":\"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS - CodexWorld\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png\",\"datePublished\":\"2016-06-09T18:00:28+00:00\",\"dateModified\":\"2025-08-27T06:17:53+00:00\",\"description\":\"Overlay content or pre-loader image over Div - Example code snippet to display a loading image over the content using CSS.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png\",\"contentUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png\",\"width\":1920,\"height\":1080,\"caption\":\"display-loading-overlay-image-loader-over-div-using-css-codexworld\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/overlay-preloader-image-over-div-css\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.codexworld.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#website\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/\",\"name\":\"CodexWorld\",\"description\":\"Web &amp; Mobile App Development Company\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.codexworld.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#organization\",\"name\":\"CodexWorld\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/codexworld-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.codexworld.com\\\/wp-content\\\/uploads\\\/2014\\\/09\\\/codexworld-logo.png\",\"width\":200,\"height\":19,\"caption\":\"CodexWorld\"},\"image\":{\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/codexworld\",\"https:\\\/\\\/x.com\\\/codexworldweb\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/codexworld\",\"https:\\\/\\\/www.youtube.com\\\/codexworld\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.codexworld.com\\\/#\\\/schema\\\/person\\\/9da51d8fa3cdefeb5ec9c69136d4baf0\",\"name\":\"CodexWorld\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g\",\"caption\":\"CodexWorld\"},\"description\":\"CodexWorld is a programming blog, one-stop destination for web professionals \u2014 developers, programmers, freelancers, and site owners.\",\"sameAs\":[\"http:\\\/\\\/www.codexworld.com\",\"https:\\\/\\\/www.facebook.com\\\/codexworld\",\"https:\\\/\\\/x.com\\\/codexworldblog\"],\"url\":\"https:\\\/\\\/www.codexworld.com\\\/author\\\/nitya192265\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS - CodexWorld","description":"Overlay content or pre-loader image over Div - Example code snippet to display a loading image over the content using CSS.","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:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/","og_locale":"en_US","og_type":"article","og_title":"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS - CodexWorld","og_description":"Overlay content or pre-loader image over Div - Example code snippet to display a loading image over the content using CSS.","og_url":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/","og_site_name":"CodexWorld","article_publisher":"https:\/\/www.facebook.com\/codexworld","article_author":"https:\/\/www.facebook.com\/codexworld","article_published_time":"2016-06-09T18:00:28+00:00","article_modified_time":"2025-08-27T06:17:53+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2016\/06\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png","type":"image\/png"}],"author":"CodexWorld","twitter_card":"summary_large_image","twitter_creator":"@codexworldblog","twitter_site":"@codexworldweb","twitter_misc":{"Written by":"CodexWorld","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#article","isPartOf":{"@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/"},"author":{"name":"CodexWorld","@id":"https:\/\/www.codexworld.com\/#\/schema\/person\/9da51d8fa3cdefeb5ec9c69136d4baf0"},"headline":"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS","datePublished":"2016-06-09T18:00:28+00:00","dateModified":"2025-08-27T06:17:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/"},"wordCount":243,"commentCount":3,"publisher":{"@id":"https:\/\/www.codexworld.com\/#organization"},"image":{"@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2016\/06\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png","keywords":["CSS","HTML","Loader","Overlay","Preloader"],"articleSection":["HTML&amp;CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/","url":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/","name":"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS - CodexWorld","isPartOf":{"@id":"https:\/\/www.codexworld.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#primaryimage"},"image":{"@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2016\/06\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png","datePublished":"2016-06-09T18:00:28+00:00","dateModified":"2025-08-27T06:17:53+00:00","description":"Overlay content or pre-loader image over Div - Example code snippet to display a loading image over the content using CSS.","breadcrumb":{"@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#primaryimage","url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2016\/06\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png","contentUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2016\/06\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png","width":1920,"height":1080,"caption":"display-loading-overlay-image-loader-over-div-using-css-codexworld"},{"@type":"BreadcrumbList","@id":"https:\/\/www.codexworld.com\/overlay-preloader-image-over-div-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.codexworld.com\/"},{"@type":"ListItem","position":2,"name":"Transparent Loading Overlay with Spinner Loader Image over DIV using CSS"}]},{"@type":"WebSite","@id":"https:\/\/www.codexworld.com\/#website","url":"https:\/\/www.codexworld.com\/","name":"CodexWorld","description":"Web &amp; Mobile App Development Company","publisher":{"@id":"https:\/\/www.codexworld.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.codexworld.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.codexworld.com\/#organization","name":"CodexWorld","url":"https:\/\/www.codexworld.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codexworld.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2014\/09\/codexworld-logo.png","contentUrl":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2014\/09\/codexworld-logo.png","width":200,"height":19,"caption":"CodexWorld"},"image":{"@id":"https:\/\/www.codexworld.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codexworld","https:\/\/x.com\/codexworldweb","https:\/\/www.linkedin.com\/company\/codexworld","https:\/\/www.youtube.com\/codexworld"]},{"@type":"Person","@id":"https:\/\/www.codexworld.com\/#\/schema\/person\/9da51d8fa3cdefeb5ec9c69136d4baf0","name":"CodexWorld","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cf4999db3b409de559f80677afa01729bb2eeda19be273c254e8b2c22729e386?s=96&r=g","caption":"CodexWorld"},"description":"CodexWorld is a programming blog, one-stop destination for web professionals \u2014 developers, programmers, freelancers, and site owners.","sameAs":["http:\/\/www.codexworld.com","https:\/\/www.facebook.com\/codexworld","https:\/\/x.com\/codexworldblog"],"url":"https:\/\/www.codexworld.com\/author\/nitya192265\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.codexworld.com\/wp-content\/uploads\/2016\/06\/display-loading-overlay-image-loader-over-div-using-css-codexworld.png","jetpack_shortlink":"https:\/\/wp.me\/p6bxIh-q8","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/1620","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/comments?post=1620"}],"version-history":[{"count":4,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/1620\/revisions"}],"predecessor-version":[{"id":5866,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/posts\/1620\/revisions\/5866"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/media\/5421"}],"wp:attachment":[{"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/media?parent=1620"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/categories?post=1620"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.codexworld.com\/wp-json\/wp\/v2\/tags?post=1620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}