"Bootstrap Indeterminate Progress Bar"
Bootstrap 3.3.0 Snippet by krmax44

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <p>© 2016 <a href="https://krmax44.de">krmax44</a></p> <div class="progress"> <div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%" id="progressinner"> <span class="sr-only">Loading...</span> </div> </div> </div
$(document).ready(function(){ function animateloop () { $("#progressinner").css({marginLeft: "-45%"}); $("#progressinner").animate({ marginLeft: "145%" }, 2000, function(){animateloop()}); } animateloop(); });

Related: See More


Questions / Comments: