vue countto 数字滚动组件, 两种实现方式

第一种: vuecountto

安装

npm i vue-count-to -S

使用

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

第二种: 自定义组件

<template&gt;
	<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 &amp;&amp; newVal != null &amp;&amp; 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" />

原文地址:https://blog.csdn.net/zhao3756/article/details/134732224

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_26892.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注