misskey-awawa/src/client/app/common/views/widgets/tips.vue

104 lines
1.7 KiB
Vue
Raw Normal View History

2018-02-15 03:36:42 +00:00
<template>
<div class="mkw-tips">
<p ref="tip"><fa :icon="['far', 'lightbulb']"/><span v-html="tip"></span></p>
2018-02-15 03:36:42 +00:00
</div>
</template>
<script lang="ts">
import * as anime from 'animejs';
2018-02-24 15:18:09 +00:00
import define from '../../../common/define-widget';
2018-02-15 03:36:42 +00:00
const tips = [
'%i18n:@tips-line1%',
'%i18n:@tips-line2%',
'%i18n:@tips-line3%',
'%i18n:@tips-line4%',
'%i18n:@tips-line5%',
'%i18n:@tips-line6%',
'%i18n:@tips-line7%',
'%i18n:@tips-line8%',
'%i18n:@tips-line9%',
'%i18n:@tips-line10%',
'%i18n:@tips-line11%',
'%i18n:@tips-line13%',
'%i18n:@tips-line14%',
'%i18n:@tips-line17%',
'%i18n:@tips-line19%',
'%i18n:@tips-line20%',
'%i18n:@tips-line21%',
'%i18n:@tips-line23%',
'%i18n:@tips-line24%',
'%i18n:@tips-line25%'
2018-02-15 03:36:42 +00:00
]
export default define({
name: 'tips'
}).extend({
data() {
return {
tip: null,
clock: null
};
},
mounted() {
2018-02-18 09:40:24 +00:00
this.$nextTick(() => {
2018-02-15 03:36:42 +00:00
this.set();
});
this.clock = setInterval(this.change, 20000);
},
beforeDestroy() {
clearInterval(this.clock);
},
methods: {
set() {
this.tip = tips[Math.floor(Math.random() * tips.length)];
},
change() {
anime({
targets: this.$refs.tip,
opacity: 0,
duration: 500,
easing: 'linear',
complete: this.set
});
setTimeout(() => {
anime({
targets: this.$refs.tip,
opacity: 1,
duration: 500,
easing: 'linear'
});
}, 500);
}
}
});
</script>
<style lang="stylus" scoped>
.mkw-tips
overflow visible !important
> p
display block
margin 0
padding 0 12px
text-align center
font-size 0.7em
color #999
> [data-icon]
2018-02-15 03:36:42 +00:00
margin-right 4px
kbd
display inline
padding 0 6px
margin 0 2px
font-size 1em
font-family inherit
border solid 1px #999
border-radius 2px
</style>