forked from anup-a/svgwave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (131 loc) · 4.39 KB
/
index.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="SVG Wave is a minimal svg wave generator with lot of customization. It lets you abiltiy to generate and export pngs and svgs of beautiful waves. SVG wave also lets you layer multiple waves. Create SVGs for your website designs."
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<meta
name="title"
content="Svg Wave - A free and beautiul gradient SVG wave Generator."
/>
<title>Svg Wave - A free & beautiful gradient SVG wave Generator.</title>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.svgwave.in" />
<meta
property="og:title"
content="Svg Wave - A free & beautiul gradient SVG wave Generator."
/>
<meta
property="og:description"
content="SVG Wave is a minimal gradient svg wave generator with lot of customization. It lets you abiltiy to generate and export pngs and svgs of beautiful waves. SVG wave also lets you layer multiple waves. Create SVGs for your website designs."
/>
<meta
property="og:image"
content="https://svgwave.in/images/29cf875dd59e3301be675929e0ea67a8-3-01.svg"
/>
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.svgwave.in" />
<meta
property="twitter:title"
content="Get Waves – Create SVG waves for your next design"
/>
<meta
property="twitter:description"
content="SVG Wave is a minimal gradient svg wave generator with lot of customization. It lets you abiltiy to generate and export pngs and svgs of beautiful waves. SVG wave also lets you layer multiple waves. Create SVGs for your website designs."
/>
<meta property="twitter:image" content="./assets/bg.png" />
<link rel="shortcut icon" href="./assets/3-01.svg" />
<style>
.loader-container {
width: 100%;
height: 100vh;
background-color: #eee;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
width: 100px;
height: 100px;
background-color: #4de6d4;
border-radius: 50%;
position: relative;
overflow: hidden;
}
.loader:after {
content: '';
position: absolute;
width: 100px;
height: 100px;
background-color: #fff;
}
.loader:before {
content: '';
position: absolute;
width: 100px;
height: 100px;
background-color: #fff;
}
.loader:before {
top: -40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.7);
animation: wave 5s linear infinite;
}
.loader:after {
top: -40px;
border-radius: 30%;
background: rgba(255, 255, 255, 0.3);
animation: wave 5s linear infinite;
}
@keyframes wave {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-110192731-2"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'UA-110192731-2')
</script>
</head>
<body>
<div id="app"></div>
<div class="loader-container">
<div class="loader"></div>
</div>
</body>
<script>
document.onreadystatechange = function () {
const state = document.readyState
if (state === 'interactive') {
document.querySelector('#app').style.display = 'none'
} else if (state === 'complete') {
// setTimeout can be used to test the loader.
// setTimeout(function () {
document.querySelector('.loader-container').style.display = 'none'
document.querySelector('#app').style.display = 'block'
// }, 3000)
}
}
</script>
</html>