@bg-dev/nuxt-naiveui
Version:
Unofficial Naive UI module for Nuxt
73 lines (61 loc) • 1.79 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body,
html {
margin: 0;
}
body {
height: 100vh;
height: 100dvh;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<script>
const bodyColor = localStorage.getItem('naive-body-bg-color')
const primaryColor = localStorage.getItem('naive-primary-color')
document.body.style.backgroundColor = bodyColor
document.documentElement.style.setProperty('--naive-primary-color', primaryColor);
</script>
<style>
.spinner {
width: 40px;
height: 40px;
margin: 100px auto;
background-color: var(--naive-primary-color);
border-radius: 100%;
-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
0% {
-webkit-transform: scale(0)
}
100% {
-webkit-transform: scale(1.0);
opacity: 0;
}
}
@keyframes sk-scaleout {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
opacity: 0;
}
}
</style>
</head>
<body>
<div class="spinner"></div>
</body>
</html>