pinafore/routes/_components/LoadingPage.html

30 lines
564 B
HTML
Raw Normal View History

2018-02-12 00:10:39 +00:00
<div class="loading-page {{shown ? '' : 'hidden'}}">
2018-02-07 04:54:49 +00: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-12 00:10:39 +00:00
transition: opacity 0.25s linear;
2018-02-07 04:54:49 +00:00
}
</style>
<script>
import LoadingSpinner from './LoadingSpinner.html'
export default {
2018-02-12 00:10:39 +00:00
oncreate() {
setTimeout(() => {
this.set({shown: true})
}, 200)
},
2018-02-07 04:54:49 +00:00
components: {
LoadingSpinner
}
}
</script>