gpt4 book ai didi

javascript - 我需要一个以给定值开始的售票柜台

转载 作者:太空宇宙 更新时间:2023-11-03 22:13:26 24 4
gpt4 key购买 nike

我是 web 开发的初学者,我试图为购买的门票数量制作一个计数器,但我希望它以给定的值开始。

我的总是从0开始,有什么办法可以实现吗?

这是我的代码:

我试过使用 html/JS/CSS 和 jQuery:

<!DOCTYPE html>
<html>
<head>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
></script>
<link href="newcss.css" rel="stylesheet" type="text/css"/>
<title>Tickets Counter</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container counter-section">
<div class="row text-center">
<div class="col-md-3 counter-box">

<div class="icon-box" ><i class="fa fa-ticket"></i> </div>
<p class="counter">150</p>
<p>Tickets</p>
</div>
</div>
</div>

<!---COUNTER----->

<script src="jquery.counterup.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/waypoints/2.0.3/waypoints.min.js"></script>
<script>
jQuery(document).ready(function( $ )
{
$('.counter').counterUp({
delay: 10,
time: 1000
});
});
</script>

</body>
</html>

最佳答案

Acording to the documentation ,你可以这样做:

jQuery(document).ready(function($) {
$('.counter').counterUp({
delay: 10,
time: 1000,
beginAt: 100
});
});

关于javascript - 我需要一个以给定值开始的售票柜台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58073292/

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