html代码:
<template>
<div>
<img :src="imageSrc" alt="图片" class="animate-image" />
<button @click="startAnimation = !startAnimation">播放动画</button>
</div>
</template>
css代码:
.animate-image {
/* 设置图片的初始状态 */
opacity: 1;
transform: rotate(0deg);
transition: opacity 1s, transform 1s;
}
.animate-image.shake {
/* 添加图片闪烁的动画效果 */
animation: shake 1s infinite;
}
@keyframes shake {
0% {
/* 初始状态 */
transform: rotate(0deg);
}
50% {
/* 图片旋转 45 度 */
transform: rotate(45deg);
opacity: 0.5;
}
100% {
/* 回到初始状态 */
transform: rotate(0deg);
opacity: 1;
}
}
.animate-image.rotate {
/* 添加图片旋转的动画效果 */
animation: rotate 3s infinite linear;
}
@keyframes rotate {
from {
/* 初始状态 */
transform: rotate(0deg);
}
to {
/* 图片顺时针旋转360度 */
transform: rotate(360deg);
}
}
js代码:
export default {
data() {
return {
startAnimation: false // 控制动画播放的变量
};
},
computed: {
imageSrc() {
return this.startAnimation ? '图片路径' : '';
}
}
}
以上是编程学习网小编为您介绍的“Vue项目中如何实现图片的闪烁和旋转动画功能?”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:Vue项目中如何实现图片的闪烁和旋转动画功能?
基础教程推荐
猜你喜欢
- vue使用axios实现excel文件下载的功能 2024-02-09
- js登录滑动验证的实现(不滑动无法登陆) 2024-01-08
- TWebBrowser 与 MSHTML(3): window 对象的属性、方法、事件纵览 2023-10-27
- CSS实现当鼠标移到input上时鼠标变为不可输入的状态 2024-01-22
- js实现滚动条滚动到某个位置便自动定位某个tr 2024-01-24
- ajax实现加载数据功能 2023-02-01
- 从 ExtJs JsonStore 访问 piggybag 属性,有可能吗? 2022-09-15
- JavaScript中如何使用cookie实现记住密码功能及cookie相关函数介绍 2024-03-21
- 关于javascript:添加图标到angular材质输入 2022-09-21
- Vue vue.config.js 的详解与配置 2023-10-08