- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在页面上显示一些统计数据。当您向下滚动页面时,数字会呈现动画。
某些统计数据需要在数字后添加“+”或“%”。我似乎只能将相同的字符应用于所有计数器,但需要使用“+”、“%”或根本不指定特定字符。所以我的问题是如何针对具有特定后缀的特定计数器?
下面是我用于四个不带后缀的计数器的代码。我可以为此添加一些额外的代码吗?我对编码很陌生,因此我们将不胜感激!
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
var a = 0;
$(window).scroll(function() {
var oTop = $('#counter').offset().top - window.innerHeight;
if (a == 0 && $(window).scrollTop() > oTop) {
$('.counter-value').each(function() {
var $this = $(this),
countTo = $this.attr('data-count');
$({
countNum: $this.text()
}).animate({
countNum: countTo
},
{
duration: 2000,
easing: 'swing',
step: function() {
$this.text(Math.floor(this.countNum).toLocaleString("en-US"));
},
complete: function() {
$this.text(this.countNum.toLocaleString("en-US"));
}
});
});
a = 1;
}
});
</script>
<div id="counter">
<div class="sqs-col sqs-col-3 counter-value-1 counter-value" data-count="30000" data-desc="countries surveyed in">0</div>
<div class="sqs-col sqs-col-3 counter-value-2 counter-value" data-count="135" data-desc="countries surveyed in">0</div>
<div class="sqs-col sqs-col-3 counter-value-3 counter-value" data-count="18" data-desc="countries surveyed in">0</div>
<div class="sqs-col sqs-col-3 counter-value-4 counter-value" data-count="100" data-desc="countries surveyed in">0</div>
</div>
<style>
.counter-value-1 {
font-family: Georgia;
font-size: 60px;
color: #A42B28;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-1:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
.counter-value-2 {
font-family: Georgia;
font-size: 60px;
color: #EA7326;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-2:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
.counter-value-3 {
font-family: Georgia;
font-size: 60px;
color: #24B24B;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-3:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
.counter-value-4 {
font-family: Georgia;
font-size: 60px;
color: #A9CF39;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-4:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
</style>
最佳答案
我已将额外的数据字段data-suffix
设置为最后两个元素,因此我可以在循环元素时找到该后缀并使用它:
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
var a = 0;
$(window).scroll(function() {
var oTop = $('#counter').offset().top - window.innerHeight;
if (a == 0 && $(window).scrollTop() > oTop) {
$('.counter-value').each(function() {
var $this = $(this),
countTo = $this.attr('data-count');
$({
countNum: $this.text()
}).animate({
countNum: countTo
},
{
duration: 2000,
easing: 'swing',
step: function() {
var suffix=$this.data("suffix");
$this.text(Math.floor(this.countNum).toLocaleString("en-US") +suffix);
},
complete: function() {
var suffix=$this.data("suffix");
$this.text(this.countNum.toLocaleString("en-US") + suffix);
}
});
});
a = 1;
}
});
</script>
<div id="counter">
<div class="sqs-col sqs-col-3 counter-value-1 counter-value" data-count="30000" data-desc="countries surveyed in">0</div>
<div class="sqs-col sqs-col-3 counter-value-2 counter-value" data-count="135" data-desc="countries surveyed in">0</div>
<div class="sqs-col sqs-col-3 counter-value-3 counter-value" data-count="18" data-desc="countries surveyed in" data-suffix="%">0</div>
<div class="sqs-col sqs-col-3 counter-value-4 counter-value" data-count="100" data-desc="countries surveyed in" data-suffix="%">0</div>
</div>
<style>
.counter-value-1 {
font-family: Georgia;
font-size: 60px;
color: #A42B28;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-1:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
.counter-value-2 {
font-family: Georgia;
font-size: 60px;
color: #EA7326;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-2:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
.counter-value-3 {
font-family: Georgia;
font-size: 60px;
color: #24B24B;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-3:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
.counter-value-4 {
font-family: Georgia;
font-size: 60px;
color: #A9CF39;
line-height: 1.5em;
text-align: center;
padding: 17px 0;
}
.counter-value-4:after {
content: attr(data-desc);
display: block;
text-transform: none;
font-family: Poppins;
font-size: 18px;
color: black;
line-height: 1.2em;
}
</style>
关于javascript - 为数字计数器添加不同的后缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59919717/
这似乎是一个愚蠢的问题,但为什么在许多语言中存在 ++ 和 -- 运算符的前缀和后缀版本,但是没有类似 += 或 -= 等其他运算符的前缀/后缀版本?例如,如果我能写出这段代码: myArray[x+
我需要链接到第三方预建共享库。在 Windows 上,这意味着与 Third_party.lib 链接,在 Linux/Android 上,这意味着与 libThird_party.so 链接。所以为
我正在学习 C++ 中的运算符重载。原始后缀++ 的特性是它的优先级低于赋值运算符。例如,int i=0, j=0; i=j++; cout using namespace std; class V
如何在文本区域中添加每行前缀.. 示例: 这是文本区域的内容: hello124 我想为每一行添加一个 [b] 前缀和后缀,这样当我点击一个按钮时,结果将是: [b]hello[/b] [b]124[
背景:在传统的逆波兰表示法中,所有运算符都必须具有固定长度,这使得 RPN 可以很容易地被代码评估和操作,因为每个标记、表达式和子表达式都是“自包含”的,以至于人们可以盲目地替换 y在 x y *为
我有以下旨在修改日期格式的Javascript,但是我想添加原始日期或后缀,例如“st”,“nd”,“rd”,“th”到每个结束日期编号。例如,假设我们当前的日期设置为 4 月 28 日,但我想将日期
我想制定一个 header 检查规则来添加回复并将“发件人”更改为“不回复”。我将它用于某种扩散列表地址 我试过这个正则表达式代码,但它不起作用: if !/^From:(.+@myserver\.f
我想改变数据框的列内容,以便单元格内容以列名作为前缀: > x x VarX VarY 1 A C 2 B D 3 A C 4 B D > x$V
当我执行 ipconfig/all 时,我看到 DNS 后缀搜索列表。我需要从 java 中检索该值。有谁知道如何获得它或它从哪里来? 最佳答案 DNS 后缀列表读取自 HKLM\SYSTEM\Cur
当您编写一个包含大量类的应用程序时,您是否为类名使用了前缀/后缀?还是我应该只依赖我已经定义的 namespace ? 在我的例子中,我有这样的类: Blur Contrast Sharpen Inv
大多数浏览器会像这样显示有序列表: 1. foo 2. bar 3. baz 有没有办法更改编号以改为使用前缀: #1 foo #2 bar #3 baz 最佳答案 这是我能想到的最好的,你只在 Fi
我需要批量重命名多个图像,并希望使用父目录作为基本名称。为防止一个覆盖另一个,必须添加后缀。重命名过程的顺序必须遵循文件的时间戳。因为“第一个”文件是我正在使用它的网站的特色图片。 树: └── ma
我试图使用 sed 替换文件中的一些字符串,但遇到了一个问题。 我有以下字符串: TEMPLATE_MODULE TEMPLATE_SOME_ERR TEMPLATE_MORE_ERR 我想用一些字符
我对后缀/前缀运算符的优先级 和关联性 感到困惑。 一方面,当我阅读 K&R 书时,它指出: (*ip)++ The parentheses are necessary in this last ex
我有一个具有以下结构的图 V = {A1, A2, A3, A4, A5, .., An} E = {E1, E2, E3, E4, .., Ek} 现在我们定义A1的后缀: S(A1) = {All
这是解释性代码。语言是Java,代码使用Android。 fg.setTextSize(height*0.50f); //<-'f' is in the brackets 或 @Override pr
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我正在编写自己的数组类作为练习。因为,我读到非成员函数实际上在某些方面比成员函数更好。( Scott Meyers ) 我正在尝试编写尽可能多的运算符重载作为非成员函数。运算符重载 + , - 作为非
谁能解释一下关于 C 编程语言的中缀、后缀和前缀表示法是什么? 最佳答案 这是对 three terms, and how they apply 的一个很好的讨论. C 语言几乎到处都使用中缀表示法。
我有这种情况:我需要在输入文本字段 (html) 中添加引号而不更改输入的值。我正在使用 angular,所以我使用 ngModel,它看起来像这样 我希望输入字段显示“{{data}} 中的任何内
我是一名优秀的程序员,十分优秀!