.vue文件_Vue 单文件组件使用详解

正好在捣鼓如何注册和使用单文件组件,借此机会记录下来,以便下次查阅。

文档树:

a239f3efa2aed9725b5b8ccb23f3f1d9.png

现在想编写一个组件,能在App.vue中使用。

这是想做的效果图,最终想把这个抖动效果加在搜索图标上,

2f50fb0ba8b5ddbbdf7c2fa6afcd79f2.png
https://www.zhihu.com/video/1215235754760298496

Step 1: 构建单文件组件 IconRotor.vue

<template>
    <div class="bubble-wrapper">
    <div ref="bubble" class="bubble" @click="jumpOver()">
        <img class="bubble-image"
            src="./../assets/logo.png" />
    </div>
    </div>
</template>

<script>
import { TimelineLite, Back, Elastic, Expo } from "gsap"
  export default {
      name: 'IconRotor',
      data () {
        return {
        }
      },
      methods:{
          jumpOver(){
            const { bubble, bubblePulse } = this.$refs
            const timeline = new TimelineLite()
            timeline.to(bubble, 0.4, {
            scale: 0.8,
            rotation: 16,
            ease: Back.easeOut.config(1.7),
            })   
            timeline.to(
            bubblePulse,
            0.5, 
            {
                scale: 0.9,
                opacity: 1,
            },
            '-=0.6' 
            )
            
            timeline.to(bubble, 1.2, {
            scale: 1,
            rotation: '-=16',
            ease: Elastic.easeOut.config(2.5, 0.5),
            })
            timeline.to(
            bubblePulse,
            1.1,
            {
                scale: 3,
                opacity: 0,
                ease: Expo.easeOut,
            },
            '-=1.2'
            )
            }
        },
        mounted() {
            
        },
      components:{
      }
    }

</script>

<style>

.bubble {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  background: #272727;
  border-radius: 50%;
  height: 100px;
  width: 100px;
}
.bubble-pulse {
  position: absolute;
  z-index: 1;
  height: 120px;
  width: 120px;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  background: #272727;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
}
.bubble-image {
  height: 50%;
}
</style>

Step 2,在App.vue中注册组件

  • 首先要导入IconRotor

9c8f4bd3934215d27d40ab1f69d79eb7.png
  • 其次要在export 里命名component。这一步非常重要,你可以定制这一步,前面的key是你想使用的tag的名字,后面的value是你导入的组件的名字

506570cfe25e37a8f3e98f62cb743bcf.png

Step 3 在App.vue的Template tag里就能用 iconrotor这个组件了。从效果图可以看到新的抖动Vue图标已经可以在页面上看到了。

ac26cd7bbc856b527b311aaaa4d5099f.png

下篇详解如何用Vue从svg + animation实现抖动效果。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值