gpt4 book ai didi

html - 在 html 中移动进度条?

转载 作者:行者123 更新时间:2023-11-28 13:12:31 24 4
gpt4 key购买 nike

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

<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>

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

最佳答案

我建议用 JQuery 实现这一点..

Check out JQuery progress plugin

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

其中 value 是进度的百分比。

我整理了一个 jsFiddle demo here !

关于html - 在 html 中移动进度条?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18581415/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com