{"id":5024,"date":"2020-01-13T15:41:28","date_gmt":"2020-01-13T15:41:28","guid":{"rendered":"https:\/\/webdevtrick.com\/?p=5024"},"modified":"2020-01-13T15:41:28","modified_gmt":"2020-01-13T15:41:28","slug":"bootstrap-tooltip-progress-bar","status":"publish","type":"post","link":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/","title":{"rendered":"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip"},"content":{"rendered":"<p><strong>How we can create a progress bar with values in the tooltip? Solution: See this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip.<\/strong><\/p>\n<p>Previously I have shared some <span><a href=\"https:\/\/webdevtrick.com\/tag\/progress-bar\/\" target=\"_blank\" rel=\"noopener noreferrer\">progress bar<\/a><\/span> programs, but this <strong>progress bar<\/strong> shows the values in tooltip or info card. Basically, A progress bar is a graphical control element used to visualize the progression of an operation. Also on the website we use to show other things like skills, comparison, etc. And The <span><a href=\"https:\/\/webdevtrick.com\/tag\/tooltip\/\" target=\"_blank\" rel=\"noopener noreferrer\"> tooltip<\/a><\/span> or info tip is a type of hint in a common graphical user interface element. We combined these two types of elements to create the program.<\/p>\n<p>Today you will learn to create <strong>progress with Percentage Values<\/strong> in <strong>Tooltip<\/strong>. Basically, there are 6 progress bars for showing skills in codes like HTML, CSS, PHP, etc. And the bars have <span><a href=\"https:\/\/webdevtrick.com\/tag\/css-animation\" target=\"_blank\" rel=\"noopener noreferrer\">animation effects<\/a> <\/span>when it reaches 0 to its given percentage values. You will see the <strong>percentage values<\/strong> in a tooltip or infotip which is placed above the progress bar, where <strong>progress<\/strong> ends.<\/p>\n<p>So, Today I am sharing <strong>Bootstrap Tooltip Progress Bar<\/strong> Animation. There I have used Bootstrap library to creating this program, it is HTML, CSS, JS library for creating <span><a href=\"https:\/\/webdevtrick.com\/tag\/responsive\" target=\"_blank\" rel=\"noopener noreferrer\">responsive<\/a> <\/span>elements. The JS part has a few lines of codes that are based on jQuery and bootstrap JS. You can use this program on your website to showing your <strong>skills<\/strong> or anything else.<\/p>\n<p>If you are thinking now how this progress bar animation actually is, then see the preview given below.<\/p>\n<h3>Preview Of Skills Progress With Infotip<\/h3>\n<p>See this video preview to getting an idea of how this progress animation looks like.<\/p>\n<div style=\"width: 640px;\" class=\"wp-video\"><video class=\"wp-video-shortcode\" id=\"video-5024-1\" width=\"640\" height=\"331\" loop autoplay preload=\"metadata\" controls=\"controls\"><source type=\"video\/mp4\" src=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/bootstrap-progress.mp4?_=1\" \/><a href=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/bootstrap-progress.mp4\">https:\/\/webdevtrick.com\/wp-content\/uploads\/bootstrap-progress.mp4<\/a><\/video><\/div>\n<a class=\"maxbutton-2 maxbutton maxbutton-demo\" target=\"_blank\" rel=\"noopener\" href=\"https:\/\/webdevtrick.com\/demos\/tooltip-progress-bar\/\"><span class='mb-text'>Live Demo<\/span><\/a>\n<p>Now you can see this visually, also you can see it live by pressing the button given above. If you like this, then get the <strong>source code<\/strong> of its.<\/p>\n<p><span style=\"font-size: 14pt;\">You May Also Like:<\/span><\/p>\n<ul>\n \t<span><\/p>\n<li><a href=\"https:\/\/webdevtrick.com\/bootstrap-password-strength-validation\/\" target=\"_blank\" rel=\"noopener noreferrer\">Bootstrap Password Strength Validation<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/color-cross-text-reveal\/\" target=\"_blank\" rel=\"noopener noreferrer\">Color Cross Text Reveal<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/css-upload-animation\/\" target=\"_blank\" rel=\"noopener noreferrer\">CSS Upload Animation<\/a><\/li>\n<li><a href=\"https:\/\/webdevtrick.com\/javascript-quote-slider\/\" target=\"_blank\" rel=\"noopener noreferrer\">JavaScript Quote Slider<\/a><\/li>\n<p><\/span>\n<\/ul>\n<h2>Bootstrap Tooltip Progress Bar Animation Source Code<\/h2>\n<p>Before <strong>sharing source code<\/strong>, let&#8217;s talk about it. First I have created a section and bootstrap <strong>grid-based layouts<\/strong> using container, row, column, etc. Inside a progress bar div, I have placed many elements like div and span. There I have used HTML <strong>Data-*<\/strong> elements to store custom data, which are also in bootstrap&#8217;s pre-built functions.<\/p>\n<p>Now <strong>using CSS<\/strong> I gave some values like color, border, etc. The program is based on <span><a href=\"https:\/\/webdevtrick.com\/web-design\/bootstrap\/\" target=\"_blank\" rel=\"noopener noreferrer\"> bootstrap<\/a><\/span> and it has own CSS file, that&#8217;s why there is very little part of custom CSS codes. Also, the JS file has a few lines of codes. It is <strong>animating the progress bar<\/strong> and shows values visually, according to HTML values. It increasing the width value of the bar.<\/p>\n<p>Left all other things you will understand after <strong>getting the codes<\/strong>, I can&#8217;t explain all in writing. For creating this program you have to create 3 files. First file for <strong>HTML<\/strong>, second file for <strong>CSS<\/strong>, and the third file for <strong>JavaScript<\/strong>. Follow the steps to creating this without any error.<\/p>\n<p><span style=\"font-size: 14pt;\">index.html<\/span><\/p>\n<p>Create an HTML file named &#8216;<em><strong>index.html<\/strong><\/em>&#8216; and put these codes given below.<\/p>\n<pre class=\"height-set:true height:750 lang:xhtml decode:true \" title=\"index.html\">&lt;!DOCTYPE html&gt;\r\n&lt;!--Code By Webdevtrick ( https:\/\/webdevtrick.com )--&gt;\r\n&lt;html lang=\"en\" &gt;\r\n&lt;head&gt;\r\n  &lt;meta charset=\"UTF-8\"&gt;\r\n  &lt;title&gt; Tooltip Progress Bar | Webdevtrick.com&lt;\/title&gt;\r\n  &lt;link rel='stylesheet' href='https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.4\/css\/bootstrap.min.css'&gt;\r\n  &lt;link rel=\"stylesheet\" href=\"style.css\"&gt;\r\n\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n&lt;section&gt;\r\n&lt;div class=\"container\"&gt;\r\n  &lt;div class=\"row\"&gt;\r\n  &lt;div class=\"col-md-8 col-lg-8\"&gt;\r\n       \r\n&lt;div class=\"barWrapper\"&gt;\r\n &lt;span class=\"progressText\"&gt;&lt;B&gt;HTML5&lt;\/B&gt;&lt;\/span&gt;\r\n&lt;div class=\"progress\"&gt;\r\n  &lt;div class=\"progress-bar\" role=\"progressbar\" aria-valuenow=\"90\" aria-valuemin=\"0\" aria-valuemax=\"100\" &gt;   \r\n        &lt;span  class=\"popOver\" data-toggle=\"tooltip\" data-placement=\"top\" title=\"90%\"&gt; &lt;\/span&gt;     \r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;div class=\"barWrapper\"&gt;\r\n &lt;span class=\"progressText\"&gt;&lt;B&gt;CSS3&lt;\/B&gt;&lt;\/span&gt;\r\n&lt;div class=\"progress \"&gt;\r\n  &lt;div class=\"progress-bar\" role=\"progressbar\" aria-valuenow=\"80\" aria-valuemin=\"10\" aria-valuemax=\"100\" style=\"\"&gt;\r\n     &lt;span  class=\"popOver\" data-toggle=\"tooltip\" data-placement=\"top\" title=\"80%\"&gt; &lt;\/span&gt;  \r\n  &lt;\/div&gt;\r\n  \r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n\r\n&lt;div class=\"barWrapper\"&gt;\r\n &lt;span class=\"progressText\"&gt;&lt;B&gt;BOOTSTRAP&lt;\/B&gt;&lt;\/span&gt;\r\n&lt;div class=\"progress\"&gt;\r\n  &lt;div class=\"progress-bar\" role=\"progressbar\" aria-valuenow=\"60\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;\r\n     &lt;span  class=\"popOver\" data-toggle=\"tooltip\" data-placement=\"top\" title=\"60%\"&gt; &lt;\/span&gt;  \r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"barWrapper\"&gt;\r\n &lt;span class=\"progressText\"&gt;&lt;B&gt;JQUERY&lt;\/B&gt;&lt;\/span&gt;\r\n&lt;div class=\"progress\"&gt;\r\n  &lt;div class=\"progress-bar\" role=\"progressbar\" aria-valuenow=\"50\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;\r\n         &lt;span  class=\"popOver\" data-toggle=\"tooltip\" data-placement=\"top\" title=\"50%\"&gt; &lt;\/span&gt;  \r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"barWrapper\"&gt;\r\n &lt;span class=\"progressText\"&gt;&lt;B&gt;MYSQL&lt;\/B&gt;&lt;\/span&gt;\r\n&lt;div class=\"progress\"&gt;\r\n  &lt;div class=\"progress-bar\" role=\"progressbar\" aria-valuenow=\"85\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;\r\n      &lt;span  class=\"popOver\" data-toggle=\"tooltip\" data-placement=\"top\" title=\"85%\"&gt; &lt;\/span&gt;  \r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n  &lt;div class=\"barWrapper\"&gt;\r\n &lt;span class=\"progressText\"&gt;&lt;B&gt;PHP&lt;\/B&gt;&lt;\/span&gt;\r\n&lt;div class=\"progress\"&gt;\r\n  &lt;div class=\"progress-bar\" role=\"progressbar\" aria-valuenow=\"75\" aria-valuemin=\"0\" aria-valuemax=\"100\"&gt;\r\n      &lt;span  class=\"popOver\" data-toggle=\"tooltip\" data-placement=\"top\" title=\"75%\"&gt; &lt;\/span&gt; \r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n\r\n  &lt;\/section&gt;\r\n\r\n&lt;script src='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/2.1.3\/jquery.min.js'&gt;&lt;\/script&gt;\r\n&lt;script src='https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.4\/js\/bootstrap.min.js'&gt;&lt;\/script&gt;\r\n&lt;script  src=\"function.js\"&gt;&lt;\/script&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p><span style=\"font-size: 14pt;\">style.css<\/span><\/p>\n<p>Now create a CSS file named &#8216;<em><strong>style.css<\/strong><\/em>&#8216; and put these codes given here.<\/p>\n<pre class=\"height-set:true height:750 lang:css decode:true \" title=\"style.css\">\/* Code By Webdevtrick ( https:\/\/webdevtrick.com ) *\/\r\n.tooltip{ \r\n  position:relative;\r\n  float:right;\r\n}\r\n.tooltip &gt; .tooltip-inner {\r\n  background-color: #ff4b4b;\r\n  padding:5px 15px; \r\n  color:#fff; \r\n  font-weight:bold; \r\n  font-size:13px;\r\n}\r\n.popOver + .tooltip &gt; .tooltip-arrow {\r\n    border-left: 5px solid transparent; \r\n    border-right: 5px solid transparent; \r\n    border-top: 5px solid #ff4b4b;}\r\n\r\nsection{\r\n  margin:100px auto; \r\n  height:1000px;\r\n}\r\n.progress{\r\n  border-radius:0;\r\n  overflow:visible;\r\n}\r\n.progress-bar{\r\n   background:rgb(23,44,60); \r\n  -webkit-transition: width 1.5s ease-in-out;\r\n  transition: width 1.5s ease-in-out;\r\n}<\/pre>\n<p><span style=\"font-size: 14pt;\">function.js<\/span><\/p>\n<p>The final step, create a JavaScript file named &#8216;<em><strong>function.js<\/strong><\/em>&#8216; and put the codes.<\/p>\n<pre class=\"height-set:true height:750 lang:js decode:true \" title=\"function.js\">\/\/ Code By Webdevtrick ( https:\/\/webdevtrick.com )\r\n$(function () { \r\n  $('[data-toggle=\"tooltip\"]').tooltip({trigger: 'manual'}).tooltip('show');\r\n});  \r\n\r\n  $(\".progress-bar\").each(function(){\r\n    each_bar_width = $(this).attr('aria-valuenow');\r\n    $(this).width(each_bar_width + '%');\r\n  });\r\n<\/pre>\n<p>That&#8217;s It. Now you have successfully created <strong>Bootstrap Tooltip Progress Bar<\/strong> Animation, <strong>Percentage Values in Tooltip<\/strong>. If you have any doubt or questions comment down below.<\/p>\n<p><span style=\"font-family: impact, sans-serif;\">Thanks For Visiting, Keep Visiting.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How we can create a progress bar with values in the tooltip? Solution: See this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip. Previously I have shared some progress bar programs, but this progress bar shows the values in tooltip or info card. Basically, A progress bar is a graphical control element used to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5025,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[48,46],"tags":[499,197,493,138,67,399],"class_list":["post-5024","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap","category-javascript","tag-infotip","tag-jquery","tag-progress","tag-progress-bar","tag-source-code","tag-tooltip"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip<\/title>\n<meta name=\"description\" content=\"Want to create an animated progress? Check out this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip. Get demo and 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:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip\" \/>\n<meta property=\"og:description\" content=\"Want to create an animated progress? Check out this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip. Get demo and source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Dev Trick\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webdevtrick\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-13T15:41:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"shaan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"shaan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/\"},\"author\":{\"name\":\"shaan\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\"},\"headline\":\"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip\",\"datePublished\":\"2020-01-13T15:41:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/\"},\"wordCount\":610,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg\",\"keywords\":[\"infotip\",\"jquery\",\"progress\",\"progress bar\",\"source code\",\"tooltip\"],\"articleSection\":[\"Bootstrap\",\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/\",\"url\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/\",\"name\":\"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip\",\"isPartOf\":{\"@id\":\"https:\/\/webdevtrick.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg\",\"datePublished\":\"2020-01-13T15:41:28+00:00\",\"description\":\"Want to create an animated progress? Check out this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip. Get demo and source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg\",\"width\":1200,\"height\":630,\"caption\":\"bootstrap tooltip progress bar\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webdevtrick.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webdevtrick.com\/#website\",\"url\":\"https:\/\/webdevtrick.com\/\",\"name\":\"Web Dev Trick\",\"description\":\"HTML5, CSS3, JS, PHP Source Code &amp; Tutorial\",\"publisher\":{\"@id\":\"https:\/\/webdevtrick.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webdevtrick.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webdevtrick.com\/#organization\",\"name\":\"Web Dev Trick\",\"url\":\"https:\/\/webdevtrick.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png\",\"contentUrl\":\"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png\",\"width\":512,\"height\":512,\"caption\":\"Web Dev Trick\"},\"image\":{\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webdevtrick\/\",\"https:\/\/pinterest.com\/webdevtrick\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3\",\"name\":\"shaan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webdevtrick.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g\",\"caption\":\"shaan\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip","description":"Want to create an animated progress? Check out this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip. Get demo and 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:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip","og_description":"Want to create an animated progress? Check out this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip. Get demo and source code.","og_url":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/","og_site_name":"Web Dev Trick","article_publisher":"https:\/\/www.facebook.com\/webdevtrick\/","article_published_time":"2020-01-13T15:41:28+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg","type":"image\/jpeg"}],"author":"shaan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"shaan","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#article","isPartOf":{"@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/"},"author":{"name":"shaan","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3"},"headline":"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip","datePublished":"2020-01-13T15:41:28+00:00","mainEntityOfPage":{"@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/"},"wordCount":610,"commentCount":0,"publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"image":{"@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg","keywords":["infotip","jquery","progress","progress bar","source code","tooltip"],"articleSection":["Bootstrap","JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/","url":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/","name":"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip","isPartOf":{"@id":"https:\/\/webdevtrick.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage"},"image":{"@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage"},"thumbnailUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg","datePublished":"2020-01-13T15:41:28+00:00","description":"Want to create an animated progress? Check out this Bootstrap Tooltip Progress Bar Animation, Percentage Values in Tooltip. Get demo and source code.","breadcrumb":{"@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#primaryimage","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/tooltip-progress-bar.jpg","width":1200,"height":630,"caption":"bootstrap tooltip progress bar"},{"@type":"BreadcrumbList","@id":"https:\/\/webdevtrick.com\/bootstrap-tooltip-progress-bar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webdevtrick.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap Tooltip Progress Bar Animation | Percentage Values in Tooltip"}]},{"@type":"WebSite","@id":"https:\/\/webdevtrick.com\/#website","url":"https:\/\/webdevtrick.com\/","name":"Web Dev Trick","description":"HTML5, CSS3, JS, PHP Source Code &amp; Tutorial","publisher":{"@id":"https:\/\/webdevtrick.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webdevtrick.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webdevtrick.com\/#organization","name":"Web Dev Trick","url":"https:\/\/webdevtrick.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/","url":"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png","contentUrl":"https:\/\/webdevtrick.com\/wp-content\/uploads\/logo-fb-1.png","width":512,"height":512,"caption":"Web Dev Trick"},"image":{"@id":"https:\/\/webdevtrick.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webdevtrick\/","https:\/\/pinterest.com\/webdevtrick\/"]},{"@type":"Person","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/c79bae83976f92fe305c22342b2a0be3","name":"shaan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webdevtrick.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/60aa6ee93605bda7bc598d11dd748709a69bdb55a080124cc382114d8d7e7665?s=96&d=mm&r=g","caption":"shaan"}}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/5024","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/comments?post=5024"}],"version-history":[{"count":7,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/5024\/revisions"}],"predecessor-version":[{"id":5033,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/posts\/5024\/revisions\/5033"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media\/5025"}],"wp:attachment":[{"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/media?parent=5024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/categories?post=5024"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webdevtrick.com\/wp-json\/wp\/v2\/tags?post=5024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}