You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
435 B
27 lines
435 B
|
2 years ago
|
<template>
|
||
|
|
<view class="gal-animate-bg"
|
||
|
|
:style="{
|
||
|
|
'background-image': 'linear-gradient('+bgColors+')',
|
||
|
|
animation : 'gal-animate-bg '+speed+' linear infinite'
|
||
|
|
}">
|
||
|
|
<slot></slot>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
export default{
|
||
|
|
props:{
|
||
|
|
bgColors : {
|
||
|
|
type : String,
|
||
|
|
default : '-45deg, #9055FF, #13E2DA , #6699FF, #0B63F6'
|
||
|
|
},
|
||
|
|
speed : {
|
||
|
|
type : String,
|
||
|
|
default : '15s'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|