summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/components/ellipsis-icon.vue
blob: 4a5a0f23dcf5f0bc509ea92ba763c703b0a819d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<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
		background-color rgba(#000, 0.3)
		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>