链接: leader-line-vue官网
1.npm 安装 leader-line-vue
npm install --save leader-line-vue
效果展示
文章来源:https://www.toymoban.com/news/detail-737899.html
实现代码
下载插件npm install --save leader-line-vue
文章来源地址https://www.toymoban.com/news/detail-737899.html
<template>
<div class="wrap">
<div class="box box1" ref="start">box1</div>
<div class="box box2" ref="end">box2</div>
</div>
</template>
<script>
import LeaderLine from "leader-line-vue";
export default {
data() {
return {
line: null,
};
},
mounted() {
//引导线--开始节点
let start = this.$refs.start;
//引导线--结束节点
let end = this.$refs.end;
this.line = LeaderLine.setLine(start, end, {
// dash: true,//是否虚线
dash: { animation: true }, //引导线虚线&动效
color: "red", //引导线颜色
size: 2,
gradient: {
//配置引导线显色 如果为true则使用默认颜色
startColor: "#2e17c3",
endColor: "#1df3f9",
},
//引导线阴影
dropShadow: { dx: 0, dy: 3 },
startLabel: "START",
middleLabel: "MIDDLE",
endLabel: "END",
});
},
//离开当前页面前销毁掉引导线
beforeRouteLeave(to, from, next) {
this.line.remove();
next();
},
};
</script>
<style lang="scss" scoped>
.wrap {
width: 100%;
height: 100%;
text-align: center;
.box {
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
}
.box1 {
background-color: pink;
margin-bottom: 300px;
}
.box2 {
display: inline-block;
background-color: green;
}
}
</style>
到了这里,关于vue实现连接线的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!