vue中动态修改animation效果无效问题详情
短信预约 -IT技能 免费直播动态提醒
问题描述
鼠标移入移出,并没有出现闪动:
<template>
<div
class="alarmIcon"
ref="alarmIcon"
@mouseenter="handleEnter"
@mouseleave="handleLeave"
></div>
</template>
<script>
export default(){
mounted(){
},
methods:{
handleEnter(){
this.$refs['alarmIcon'].style.animation = 'blink 1s inifnite'
},
handleLeave(){
this.$refs['alarmIcon'].style.animation = 'noBlink 1s inifnite'
}
}
}
</script>
<style scoped>
.alarmIcon {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
border-radius: 50%;
transform: translate3d(-50%, -50%, 0);
background: #008c8c;
animation: noBlink 1s inifinite;
}
@keyframes blink {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes noBlink {
0% {
opacity: 1;
}
100% {
opacity: 1;
}
}
</style>
问题原因
样式中添加了 scoped,会导致.alarmIcon
中的 animation 和 keyframe 中的动画会添加一个唯一标识,然后调用函数的时候 animation 是没有对应的标识的。
解决办法
将 keyframes 下的内容放到 scoped 的外边或者去掉 scoped
1.将 keyframes 下的内容放到 scoped 的外边
<style scoped>
.alarmIcon {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
border-radius: 50%;
transform: translate3d(-50%, -50%, 0);
background: #008c8c;
animation: noBlink 1s inifinite;
}
</style>
<style>
@keyframes blink {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes noBlink {
0% {
opacity: 1;
}
100% {
opacity: 1;
}
}
</style>
2.去掉scoped
<style>
.alarmIcon {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
border-radius: 50%;
transform: translate3d(-50%, -50%, 0);
background: #008c8c;
animation: noBlink 1s inifinite;
}
@keyframes blink {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes noBlink {
0% {
opacity: 1;
}
100% {
opacity: 1;
}
}
</style>
到此这篇关于vue中动态修改animation效果无效问题详情的文章就介绍到这了,更多相关vue animation 内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341