-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstw.html
198 lines (160 loc) · 4.64 KB
/
stw.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html>
<head>
<title>Stw</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<style>
@font-face {
font-family: "Exodus";
src: "payback2/ExodusDemo-Regular.otf";
}
.burn {
font-size: 50px;
font-family: Helvetica;
line-height: 1.06;
letter-spacing: -0.02em;
color: #1d1d1f;
}
.mask {
height: 53px;
position: relative;
overflow: hidden;
margin-top: var(--offset);
}
.mask span {
display: block;
box-sizing: border-box;
position: absolute;
top: 100px;
padding-bottom: var(--offset);
background-size: 100% 100%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
background-repeat: repeat;
}
.mask span[data-show] {
transform: translateY(-100%);
transition: .5s transform ease-in-out;
}
.mask span[data-up] {
transform: translateY(-200%);
transition: .5s transform ease-in-out;
}
.mask span:nth-child(1) {
background-image: linear-gradient(45deg, #0ecffe 50%, #07a6f1);
}
.mask span:nth-child(2) {
background-image: linear-gradient(45deg, #18e198 50%, #0ec15d);
}
.mask span:nth-child(3) {
background-image: linear-gradient(45deg, #8a7cfb 50%, #633e9c);
}
.mask span:nth-child(4) {
background-image: linear-gradient(45deg, #fa7671 50%, #f45f7f);
}
text {
fill: #FFf;
font-family: 'Montserrat';
font-weight: 900;
font-size: 80px;
letter-spacing: 2.5px;
}
tspan{
font-size: 120px;
}
.circleText {
position: absolute;
width: 42px;
height: 42px;
max-height: 75vh;
max-width: 75vw;
overflow: visible;
transform-origin: center center;
stroke-opacity: 0.5;
}
</style>
</head>
<body>
<div class="w-full h-screen">
<div class="w-full h-14">
<div class="w-auto h-12 relative top-1 left-8 flex flex-row">
<img src="payback2/9XSKtXvY_400x400.jpg" class="bottom-4 relative w-20 h-20">
</div>
<div class="w-72 h-12 absolute top-1 right-6 flex flex-row space-x-2">
<span class="text-[#6978a0] absolute right-28 top-3 text-sm">Register</span>
<div class="rounded-md bg-[#0083ff] text-white w-20 h-10 text-center absolute right-4"><span class="relative top-2 text-sm">Login</span></div>
</div>
</div>
<img src="payback2/pop-corn.png" class="w-12 h-12 absolute top-36 right-16 -rotate-45">
<div class="w-9/12 h-[420px] mx-auto relative top-12">
<center>
<h1 class="top-2 relative font-['Exodus'] font-bold text-5xl text-[#0083ff]">
Omnichannel Helpdesk
</h1>
<h1 class="top-4 relative font-['Exodus'] font-bold text-5xl text-[#081131]">
for Shopify E-Commerce
</h1>
</span>
<div class="w-6/12 relative top-6">
<br>
<span class="relative mx-auto text-xs text-[#3b4767]">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.
</span>
</div>
<br>
<br>
<div class="w-64 h-14 rounded-full relative mx-auto bg-[#0083ff] top-2">
<div class="h-12 w-12 rounded-full top-2 absolute left-2">
<svg class="circleText" viewBox="0 0 500 500" data-duration="5">
<path id="textcircle" fill="none" stroke="#FF9800" stroke-width="5" data-duration="5"
d="M50,250c0-110.5,89.5-200,200-200s200,89.5,200,200s-89.5,200-200,200S50,360.5,50,250">
</path>
<text dy="-25">
<textPath xlink:href="#textcircle">
SLAWIK
MEDIEN
DESIGN
</textPath>
</text>
<img src="payback2/9XSKtXvY_400x400.jpg" class="absolute w-9 h-9 rounded-full left-1 top-1">
</svg>
</div>
<span class="top-4 relative text-white">Get it started</span>
<div class="w-4 h-4 absolute right-4 top-6">
</div>
</div>
<br>
<span class="relative mx-auto text-xs top-4 text-[#6978a0]">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</span>
</center>
</div>
</div>
<script>
setInterval(function () {
const show = document.querySelector('span[data-show]')
const next = show.nextElementSibling || document.querySelector('span:first-child')
const up = document.querySelector('span[data-up]')
if (up) {
up.removeAttribute('data-up')
}
show.removeAttribute('data-show')
show.setAttribute('data-up', '')
next.setAttribute('data-show', '')
}, 2000);
rotationExample = TweenMax.to($('.circle'), 15, {
css:
{
rotation:360
},
// remove default easing for seamless loop
ease:Linear.easeNone
repeat: -1,
paused: false
});
</script>
</body>
</html>