iceshrimp-legacy/src/client/app/desktop/views/components/ellipsis-icon.vue

38 lines
592 B
Vue
Raw Normal View History

2018-02-13 01:12:54 +01:00
<template>
<div class="mk-ellipsis-icon">
<div></div><div></div><div></div>
</div>
</template>
<style lang="stylus" scoped>
.mk-ellipsis-icon
width 70px
margin 0 auto
text-align center
> div
display inline-block
width 18px
height 18px
2018-04-29 01:51:17 +02:00
background-color rgba(#000, 0.3)
2018-02-13 01:12:54 +01:00
border-radius 100%
animation bounce 1.4s infinite ease-in-out both
&:nth-child(1)
animation-delay 0s
&:nth-child(2)
margin 0 6px
animation-delay 0.16s
&:nth-child(3)
animation-delay 0.32s
@keyframes bounce
0%, 80%, 100%
transform scale(0)
40%
transform scale(1)
</style>