vue竖屏滚动公告
【摘要】
【前言】
竖屏滚动的公告 【正文】
html文件
<template>
<div class="scroll-wrap">
<...
【前言】
竖屏滚动的公告
【正文】
html文件
<template>
<div class="scroll-wrap">
<div
class="scroll-content"
:style="{ top }"
@mouseenter="Stop()"
@mouseleave="Up()"
>
<p v-for="item in reportList">
恭喜{{ item.className }}{{ item.userName }}晋级为{{ item.level }}
</p>
</div>
</div>
</template>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
javascript 文件
created(){
this.getReportList();
this.ScrollUp();
},
computed: {
top() {
return -this.activeIndex * 30 + "px";
},
},
methods: {
//查询晋级名单
getReportList() {
var vm = this;
vm.$axios
.get("/personResult/selectImprovementList")
.then(function (response) {
if (response.data.code === "0000") {
vm.reportList = response.data.data;
} else if (response.data.code === "1111") {
vm.$message({
message: response.data.message,
type: "warning",
});
}
});
},
//滚动播报方法
ScrollUp() {
this.intnum = setInterval((_) => {
if (this.activeIndex < this.reportList.length) {
this.activeIndex += 1;
} else {
this.activeIndex = 0;
}
}, 1000);
},
Stop() {
clearInterval(this.intnum);
},
Up() {
this.ScrollUp();
},
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
css文件
.scroll-wrap {
position: relative;
z-index: 2;
float: left;
margin-left: 5%;
overflow: hidden;
}
.scroll-content {
position: relative;
transition: top 0.5s;
}
.scroll-content p {
/* 每行信息间隔高度 */
line-height: 30px;
font-size: 20px;
color: yellow;
text-align: center;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
感谢阅读~
文章来源: blog.csdn.net,作者:张艳伟_Laura,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/Laura__zhang/article/details/120993319
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)