1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-01 06:16:47 +01:00

36 lines
651 B
HTML
Raw Normal View History

<div class="loading-page {shown ? '' : 'hidden'}">
2018-02-06 20:54:49 -08:00
<LoadingSpinner />
</div>
<style>
.loading-page {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
z-index: 50;
2018-02-11 16:10:39 -08:00
transition: opacity 0.25s linear;
2018-02-06 20:54:49 -08:00
}
</style>
<script>
import LoadingSpinner from './LoadingSpinner.html'
2018-03-30 17:14:53 -07:00
const SPINNER_DELAY = 700
2018-02-06 20:54:49 -08:00
export default {
2018-04-19 21:38:01 -07:00
oncreate () {
2018-02-11 16:10:39 -08:00
setTimeout(() => {
this.set({ shown: true })
2018-03-30 17:14:53 -07:00
}, SPINNER_DELAY)
2018-02-11 16:10:39 -08:00
},
data: () => ({
shown: false
}),
2018-02-06 20:54:49 -08:00
components: {
LoadingSpinner
}
}
</script>