<template>
<!-- @mouseenter="startAnimation" 表示在鼠标进入元素时触发 startAnimation 方法。
@mouseleave="stopAnimation" 表示在鼠标离开元素时触发 stopAnimation 方法。 -->
<!-- 容器元素 -->
<div class="container" @mouseenter="startAnimation" @mouseleave="stopAnimation">
<!-- 方块 -->
<div class="box" :class="{ 'animate': isAnimating }">
<!-- 元素内容 -->
</div>
</div>
</template>
<script setup>
import {
ref
} from 'vue';
const isAnimating = ref(false); // 控制是否应用动画的响应式状态
function startAnimation() {
// 鼠标进入容器时,启动动画
isAnimating.value = true;
}
function stopAnimation() {
// 鼠标离开容器时,停止动画
isAnimating.value = false;
}
</script>
<style>
.container {
/* 定义容器宽度和高度 */
width: 100px;
height: 100px;
margin-top: 50px;
margin-left: 40%;
}
.box {
/* 定义方块宽度和高度 */
width: 100px;
height: 100px;
background-color: blue;
/* 定义过渡效果 */
transition: transform 0.5s;
}
/* 应用动画类 */
.box.animate {
-webkit-animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: scale-down-center 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* 定义动画 */
@-webkit-keyframes scale-down-center {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
@keyframes scale-down-center {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
100% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
}
</style>
CSS 缩减中心动画
特创数字科技2023-12-30 10:23
相关推荐
bloxed32 分钟前
前端文件下载多方式集合余生H38 分钟前
前端Python应用指南(三)Django vs Flask:哪种框架适合构建你的下一个Web应用?LUwantAC1 小时前
CSS(四)display和floatcwtlw1 小时前
CSS学习记录20界面开发小八哥1 小时前
「Java EE开发指南」如何用MyEclipse构建一个Web项目?(一)米奇妙妙wuu1 小时前
react使用sse流实现chat大模型问答,补充css样式傻小胖1 小时前
React 生命周期完整指南梦境之冢2 小时前
axios 常见的content-type、responseType有哪些?racerun2 小时前
vue VueResource & axiosm0_548514772 小时前
前端Pako.js 压缩解压库 与 Java 的 zlib 压缩与解压 的互通实现