基本JavaScript Progressbar动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本JavaScript Progressbar动画相关的知识,希望对你有一定的参考价值。
<div id="progress" style="background: green; width: 0;"> </div> <p><a href="#" onclick="progress(); return false;">start</a></p> function progress() { var loadingbar = document.getElementById("progress"); var width = parseInt(loadingbar.style.width); width++; loadingbar.style.width = width + "px"; if (width < 300) { setTimeout(progress, 10); } }
以上是关于基本JavaScript Progressbar动画的主要内容,如果未能解决你的问题,请参考以下文章