vue count-to 数字滚动组件, 两种实现方式

vue count-to 数字滚动组件, 两种实现方式

第一种: vue-count-to

安装

npm i vue-count-to -S

使用

import CountTo from 'vue-count-to'
<CountTo :startVal='startVal' :endVal='endVal' :duration='1000'/>

第二种: 自定义组件

  • CountTo.vue
<template>
	<div class="homeNumBox">
		<div class="numBox">
			<li
				:class="{
					'number-item': !isNaN(item),
					'mark-item': isNaN(item),
				}"
				v-for="(item, index) in orderNum"
				:key="index"
			>
				<span v-if="!isNaN(item)">
					<i ref="numItems">0123456789</i>
				</span>
				<span class="comma" v-else>{{ item }}</span>
			</li>
		</div>
	</div>
</template>

<script>
export default {
	props: {
		// 传入数字
		num: {
			type: [String, Number],
			default: undefined,
		},
	},
	watch: {
		num: {
			handler(newVal, oldVal) {
				if (newVal != undefined && newVal != null && newVal != 0) {
					this.$nextTick(() => {
						let res = newVal.toString();
						this.toOrderNum(res);
						this.setNumberTransform();
					});
				}
			},
			immediate: true,
		},
	},
	data() {
		return {
			orderNum: ["0", "0", "0"],
		};
	},
	mounted() {},

	methods: {
		toOrderNum(num) {
			this.orderNum = num.split("");
		},
		setNumberTransform() {
			const numberItems = this.$refs.numItems;
			const numberArr = this.orderNum.filter(item => !isNaN(item));

			for (let index = 0; index < numberItems.length; index++) {
				const elem = numberItems[index];
				elem.style.transform = `translate(-50%, -${numberArr[index] * 10}%)`;
			}
		},
	},
};
</script>

<style lang="scss" scoped>
.homeNumBox {
	display: inline-block;
}

.numBox {
	display: flex;
	text-align: center;
}

.number-item {
	width: 18px;
	height: 50px;
	list-style: none;
	border-radius: 4px;
	margin: 0px;
}
.number-item > span {
	position: relative;
	display: inline-block;
	margin-right: 0px;
	width: 100%;
	height: 100%;
	writing-mode: vertical-rl;
	text-orientation: upright;
	overflow: hidden;
	font-family: AgencyFB-Bold;
	color: #fff;
}
.number-item > span > i {
	font-style: normal;
	position: absolute;
	top: 11px;
	left: 50%;
	transform: translate(-50%, 0);
	transition: transform 1s ease-in-out;
	letter-spacing: 10px;
	font-size: 40px;
}
.number-item:last-child {
	margin-right: 0;
}
</style>

使用

import CountTo from "./CountTo.vue";
<CountTo :num="num" />
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

zsd_666

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值