add lib folder
This commit is contained in:
6
lib/components/borderBox7/index.js
Normal file
6
lib/components/borderBox7/index.js
Normal file
@ -0,0 +1,6 @@
|
||||
import './src/main.css'
|
||||
import BorderBox7 from './src/main.vue'
|
||||
|
||||
export default function (Vue) {
|
||||
Vue.component(BorderBox7.name, BorderBox7)
|
||||
}
|
31
lib/components/borderBox7/src/main.css
Normal file
31
lib/components/borderBox7/src/main.css
Normal file
@ -0,0 +1,31 @@
|
||||
.dv-border-box-7 {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-shadow: inset 0 0 40px rgba(128, 128, 128, 0.3);
|
||||
border: 1px solid rgba(128, 128, 128, 0.3);
|
||||
}
|
||||
.dv-border-box-7 .dv-svg-container {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.dv-border-box-7 .dv-svg-container polyline {
|
||||
fill: none;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
.dv-border-box-7 .dv-bb7-line-width-2 {
|
||||
stroke: rgba(128, 128, 128, 0.3);
|
||||
stroke-width: 2;
|
||||
}
|
||||
.dv-border-box-7 .dv-bb7-line-width-5 {
|
||||
stroke: rgba(128, 128, 128, 0.5);
|
||||
stroke-width: 5;
|
||||
}
|
||||
.dv-border-box-7 .border-box-content {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
33
lib/components/borderBox7/src/main.vue
Normal file
33
lib/components/borderBox7/src/main.vue
Normal file
@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<div class="dv-border-box-7" :ref="ref">
|
||||
<svg class="dv-svg-container" :width="width" :height="height">
|
||||
<polyline class="dv-bb7-line-width-2" :points="`0, 25 0, 0 25, 0`" />
|
||||
<polyline class="dv-bb7-line-width-2" :points="`${width - 25}, 0 ${width}, 0 ${width}, 25`" />
|
||||
<polyline class="dv-bb7-line-width-2" :points="`${width - 25}, ${height} ${width}, ${height} ${width}, ${height - 25}`" />
|
||||
<polyline class="dv-bb7-line-width-2" :points="`0, ${height - 25} 0, ${height} 25, ${height}`" />
|
||||
|
||||
<polyline class="dv-bb7-line-width-5" :points="`0, 10 0, 0 10, 0`" />
|
||||
<polyline class="dv-bb7-line-width-5" :points="`${width - 10}, 0 ${width}, 0 ${width}, 10`" />
|
||||
<polyline class="dv-bb7-line-width-5" :points="`${width - 10}, ${height} ${width}, ${height} ${width}, ${height - 10}`" />
|
||||
<polyline class="dv-bb7-line-width-5" :points="`0, ${height - 10} 0, ${height} 10, ${height}`" />
|
||||
</svg>
|
||||
|
||||
<div class="border-box-content">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import autoResize from '../../../mixin/autoResize'
|
||||
|
||||
export default {
|
||||
name: 'DvBorderBox7',
|
||||
mixins: [autoResize],
|
||||
data () {
|
||||
return {
|
||||
ref: 'border-box-7'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
Reference in New Issue
Block a user