gpt4 book ai didi

javascript - 更改不确定的剑道进度条的颜色并为其添加自定义标签

转载 作者:行者123 更新时间:2023-11-28 15:54:37 26 4
gpt4 key购买 nike

我想将 Kendo 的不确定进度条的颜色从灰色更改为浅蓝色,如下图所示:

enter image description here

还有一件事我想给进度条添加一个自定义标签,比如

enter image description here

请在下面找到代码:

<div style="top:50%; left:50%">        
<div style="width: 180px; height: 20px; " id="progressbar"></div>
</div>
<script>
var passProgress = $("#progressbar").kendoProgressBar({
value: false,
width: 100,
height: 20
});
</script>

我不太擅长 CSS。我已经检查了一些样式,但它们适用于具有某些确定值的进度条。对于不确定找不到任何。

最佳答案

首先你用什么来制作进度条。就像你正在使用 w3.css progress bar on w3 school 进度条就很简单了

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<body>

<div class="w3-container">


<div class="w3-progress-container">
<div class="w3-progressbar w3-green" style="width:25%">
<div class="w3-center w3-text-white">Loading...</div>
</div>
</div><br>


</body>
</html>

如需更多帮助,请使用您当前使用的 html 和 css 代码更新您的问题,以便我们仅针对您的特定栏提供帮助

如果您可以灵活地更改栏,则可以使用此链接

progress bar code

编辑如果你不坚持使用 Kendo 你可以使用 bootstrap 它会解决你的问题代码是这样的

<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
<h2>Animated Progress Bar</h2>
<p>The .active class animates the progress bar:</p>
<div class="progress">
<div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width:40%">
Loading...
</div>
</div>
</div>

</body>
</html>

关于javascript - 更改不确定的剑道进度条的颜色并为其添加自定义标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41360115/

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