some modify

This commit is contained in:
jiaming 2018-12-05 18:31:23 +08:00
parent a034c8eeb4
commit 197b058b55
3 changed files with 97 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -0,0 +1,20 @@
<template>
<div class="decoration-1">
<img src="./img/decoration.gif" />
</div>
</template>
<script>
export default {
name: 'Decoration1'
}
</script>
<style lang="less">
.decoration-1 {
img {
width: 100%;
}
}
</style>

View File

@ -0,0 +1,77 @@
<template>
<div class="decoration-2" :ref="ref">
<div :class="reverse ? 'reverse' : 'normal'" />
</div>
</template>
<script>
export default {
name: 'Decoration2',
data () {
return {
ref: `decoration-2-${(new Date()).getTime()}`,
width: 0,
height: 0
}
},
props: ['reverse'],
methods: {
init () {
const { $nextTick, $refs, ref } = this
$nextTick(e => {
this.width = $refs[ref].clientWidth
this.height = $refs[ref].clientHeight
})
}
},
mounted () {
const { init } = this
init()
}
}
</script>
<style lang="less" scoped>
.decoration-2 {
.reverse, .normal {
background-color: #3faacb;
}
.normal {
width: 0%;
height: 1px;
border-right: 1px solid #fff;
animation: normal-amt 6s ease-in-out infinite;
}
.reverse {
width: 1px;
height: 0%;
border-bottom: 1px solid #fff;
animation: reverse-amt 6s ease-in-out infinite;
}
@keyframes reverse-amt {
70% {
height: 100%;
}
100% {
height: 100%;
}
}
@keyframes normal-amt {
70% {
width: 100%;
}
100% {
width: 100%;
}
}
}
</style>