在HTML中移动进度条?

时间:2013-09-02 22:11:03

标签: html css progress-bar

我正在编写一个条形值会增加的进度条。我用过

<progress value="22" max="100"></progress>

我还编写了一个Java Applet。好吧,applet存在安全问题,一些 Mac OS版本还没有Java SE版本,所以这是不合适的。这是HTML代码:

<html>
<title>Get Vander Walls Glue</title>
<head></head>
<style>

body {
    transition: background 10s, color 10s, text-shadow 10s;
    -webkit-transition: background 10s, color: 1s, text-shadow 1s;
    background: #1C8C08;
    color: #fff;
    text-shadow: 0 0 0.75em #08328C;
    text-decoration: none;
    text-align: center;
}
body:hover {
    background: #08328C;
    color: #600;
    text-shadow: 2px 2px #300, -2px -2px #922;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #aaa;
}

</style>

<body style="color: #fff; font-family: sans-serif, arial; font-size: 3em; padding: 0; margin: 0">

<h1 class="big">Vander Walls Glue</h1>
<hr>
<a href="http://www.moviemakingman.tk">Back</a><br/>

</body>
<footer></footer>
</html>

有人可以帮助我并解释一下吗?我想知道它是如何工作的,而不仅仅是它的工作原理。

1 个答案:

答案 0 :(得分:2)

我建议用JQuery实现这个目标..

Check out JQuery progress plugin

$( "#progressbar" ).progressbar({
  value: 37
});

其中value是进度中的百分比。

我整理了一个jsFiddle demo here