vue中使用hover.css动画

介绍:一组 CSS3 驱动的悬停效果,可应用于链接、按钮、徽标、SVG、特色图像等。轻松应用于您自己的元素、修改或仅用于灵感。在 CSS、Sass 和 LESS 中可用。

1.下载hover.css

	npm i hover.css --save

2. 全局映入css

	import 'hover.css'

3.使用类,加上类名 button hvr-bounce-to-left

	<div class="an  button hvr-bounce-to-left">
    天天向上,好好学习
  </div>

.an {
  height: 100px;
  width: 200px;
  background-color: blueviolet;
  border-radius: 10px;
  float: left;
  margin: 10px;
  vertical-align: middle;
}

4.拿到想要的样式类名 通过f12查看div上面的class类名 点击下面链接地址

hover.css 链接地址
在这里插入图片描述

总结:以上四步就可以实现hover.css动画的基本使用。

页面所有代码
	<template>
  <!-- http://ianlunn.github.io/Hover/ hover  css动画网址 -->
  //图层左弹出
  <div class="an  button hvr-bounce-to-left">
    天天向上,好好学习
  </div>
   //图层右弹出
  <div class="an  button hvr-sweep-to-right">
    天天向上,好好学习
  </div>
  <div class="an button hvr-grow">天天向上,好好学习</div>
</template>

<script lang="ts">
import { defineComponent } from "vue";
import "hover.css";
export default defineComponent({
  setup() {},
});
</script>

<style scoped>
.an {
  height: 100px;
  width: 200px;
  background-color: blueviolet;
  border-radius: 10px;
  float: left;
  margin: 10px;
  vertical-align: middle;
}
</style>

Logo

前往低代码交流专区

更多推荐