vue 生成一个悬浮球
时间: 2023-02-07 15:50:47 浏览: 353
你可以使用 Vue 的指令来生成一个悬浮球。首先,你需要在项目中安装 Vue:
```
npm install -g vue
```
然后,在你的项目中创建一个新文件,例如 `floating-ball.vue`,并在其中使用指令来创建悬浮球。例如:
```
<template>
<div class="floating-ball">
<button v-on:click="show = !show">Toggle</button>
<div v-if="show" class="ball">
<div class="ball-inner">
</div>
</div>
</div>
</template>
<style>
.floating-ball {
position: fixed;
bottom: 20px;
right: 20px;
}
.ball {
width: 50px;
height: 50px;
border-radius: 25px;
background-color: red;
}
.ball-inner {
width: 40px;
height: 40px;
border-radius: 20px;
background-color: white;
margin: 5px;
}
</style>
<script>
export default {
data() {
return {
show: true,
}
},
}
</script>
```
这样,你就可以在 Vue 项目中使用这个悬浮球了。
阅读全文