1

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

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

我还编写了一个 Java 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>

有人可以帮我解释一下吗?我真的想听听它是如何工作的,而不是它只是工作。

4

1 回答 1

2

我建议使用 JQuery 来实现这一点。

查看 JQuery 进度插件

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

其中 value 是进度的百分比。

我在这里整理了一个 jsFiddle演示

于 2013-09-02T22:26:47.080 回答