css 文字左右抖动效果

html 复制代码
<template>
  <div class="box">
    <div class="shake shape">抖动特效交字11</div>
  </div>
</template>

<script setup></script>

<style scope>
.shape {
    margin: 50px;
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid black;
 }


.shake:hover {
    animation: shakeAnimal 800ms ease-in-out;
}
@keyframes shakeAnimal { /* 水平抖动,核心代码 */
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(+2px, 0, 0); }
    30%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(+4px, 0, 0); }
    50% { transform: translate3d(-4px, 0, 0); }
}

</style>
相关推荐
e***95647 小时前
【HTML+CSS】使用HTML与后端技术连接数据库
css·数据库·html
han_7 小时前
前端高频面试题之CSS篇(二)
前端·css·面试
4***72137 小时前
【HTML+CSS】使用HTML与后端技术连接数据库
css·数据库·html
温轻舟8 小时前
禁毒路上,任重道远 | HTML页面
开发语言·前端·javascript·css·html·温轻舟
木易 士心11 小时前
深入理解 CSS 中的 !important
前端·css
兔子零102413 小时前
CSS 视口单位进化论:从 100vh 的「骗局」到 dvh 的救赎
前端·css
izx88819 小时前
HTML5敲击乐 PART--1
css
牧码岛20 小时前
Web前端之canvas实现图片融合与清晰度介绍、合并
前端·javascript·css·html·web·canvas·web前端
南囝coding2 天前
2025年CSS新特性大盘点
前端·css
颜渊呐2 天前
Vue3 + Less 实现动态圆角 TabBar:从代码到优化实践
前端·css