欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

Vue使用vue-drag-resize生成悬浮拖拽小球

时间:2022-06-05 11:18:16|栏目:vue|点击:

本文实例为大家分享了使用vue-drag-resize生成悬浮拖拽小球的具体代码,供大家参考,具体内容如下

一、下载依赖

cnpm install  vue-drag-resize

二、main.js引用

import VueDragResize from 'vue-drag-resize'
Vue.component('vue-drag-resize', VueDragResize)

三、创建组件

<template>
  <vue-drag-resize id="moreModal"
                   :isResizable="false"
                   :w="50"
                   :h="50"
                   :x="100"
                   :y="100"
                   :z="10000"
  ></vue-drag-resize>
</template>

<script>
export default {
  name: "FloatBall"
}
</script>

<style scoped>

#moreModal {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #337AB7;
  line-height: 40px;
  text-align: center;
  color: #fff;
  opacity: 0.6;
  animation: light 2s ease-in-out infinite alternate;
  cursor: pointer
}
@keyframes light {
  from {
    box-shadow: 0 0 4px #1f8cfa;
  }
  to {
    box-shadow: 0 0 20px #1f8cfa;
  }
}
#moreModal.active:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  outline: none;
}
</style>

四、展示

上一篇:Vue事件修饰符native、self示例详解

栏    目:vue

下一篇:用Vue-cli搭建的项目中引入css报错的原因分析

本文标题:Vue使用vue-drag-resize生成悬浮拖拽小球

本文地址:http://www.codeinn.net/misctech/203797.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有