<template>
<view class="container">
<view class="bullet-container">
<view v-for="(bullet, index) in bulletList" :key="index" class="bullet-item">
{
{ bullet }}
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bulletList: ["弹幕1", "弹幕2", "弹幕3", "弹幕4", "弹幕5"],
};
},
mounted() {
this.startBulletAnimation();
},
methods: {
startBulletAnimation() {
const bulletContainer = uni.createSelectorQuery().select(".bullet-container");
bulletContainer.boundingClientRect().exec((rect) =>
使用uni-app实现弹幕功能及滚动效果
于 2024-01-12 10:57:24 首次发布