-
Notifications
You must be signed in to change notification settings - Fork 0
/
mT7IAm1nLcwZKk14u.html
170 lines (148 loc) · 4.29 KB
/
mT7IAm1nLcwZKk14u.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
<html><head><base href="https://websim.ai" />
<title>SHEIN Gift Card Confirmation</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f7f7f7;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: hidden;
}
.card {
background-color: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
padding: 40px;
text-align: center;
max-width: 400px;
width: 90%;
position: relative;
z-index: 10;
}
.checkmark {
width: 80px;
height: 80px;
border-radius: 50%;
display: block;
stroke-width: 2;
stroke: #4bb71b;
stroke-miterlimit: 10;
margin: 0 auto 20px;
}
.checkmark__circle {
stroke-dasharray: 166;
stroke-dashoffset: 166;
stroke-width: 2;
stroke-miterlimit: 10;
stroke: #4bb71b;
fill: none;
animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark__check {
transform-origin: 50% 50%;
stroke-dasharray: 48;
stroke-dashoffset: 48;
animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
100% { stroke-dashoffset: 0; }
}
h1 {
color: #ff1493;
font-size: 24px;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 16px;
line-height: 1.5;
margin-bottom: 20px;
}
.gift-card {
background-color: #ffc0cb;
color: #ff1493;
padding: 15px;
border-radius: 10px;
font-size: 18px;
font-weight: 600;
margin-bottom: 20px;
}
.redeem-btn {
background-color: #ff1493;
color: white;
border: none;
padding: 12px 24px;
font-size: 16px;
font-weight: 600;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
}
.redeem-btn:hover {
background-color: #ff69b4;
}
.terms {
font-size: 12px;
color: #999;
margin-top: 20px;
}
.gift {
position: absolute;
width: 30px;
height: 30px;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff1493"><path d="M20 6h-2.18c.11-.31.18-.65.18-1 0-1.66-1.34-3-3-3-1.05 0-1.96.54-2.5 1.35l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z"/></svg>');
background-size: contain;
opacity: 0;
z-index: 1;
}
</style>
</head>
<body>
<div class="card">
<svg class="checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52">
<circle class="checkmark__circle" cx="26" cy="26" r="25" fill="none"/>
<path class="checkmark__check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8"/>
</svg>
<h1>Congratulations!</h1>
<p>Your SHEIN Gift Card claim has been successfully processed.</p>
<div class="gift-card">
$750 SHEIN Gift Card
<div style="font-size: 14px; margin-top: 5px;">Ready to use</div>
</div>
<button class="redeem-btn">Redeem Now</button>
<p class="terms">*Terms and conditions apply. The gift card value may be subject to change based on availability and promotional terms. Please check your email for further instructions on how to redeem your gift card.</p>
</div>
<script>
function createGift() {
const gift = document.createElement('div');
gift.classList.add('gift');
// Random position
gift.style.left = Math.random() * window.innerWidth + 'px';
gift.style.top = -30 + 'px';
// Random size
const size = Math.random() * 20 + 20;
gift.style.width = size + 'px';
gift.style.height = size + 'px';
// Random rotation
gift.style.transform = `rotate(${Math.random() * 360}deg)`;
document.body.appendChild(gift);
// Animate falling
let position = -30;
const interval = setInterval(() => {
position += 1;
gift.style.top = position + 'px';
gift.style.opacity = Math.min(position / 100, 1);
if (position > window.innerHeight) {
clearInterval(interval);
gift.remove();
}
}, 20);
}
// Create gifts periodically
setInterval(createGift, 300);
</script>
</body></html>