-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Eclipse</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="js--sc--container"></div>
<script src="scratchcard.min.js"></script>
<script type="text/javascript">
// message
alert("Intenta eclipsar el sol");
window.addEventListener('load', function () {
var scContainer = document.getElementById('js--sc--container');
var sc = new ScratchCard('#js--sc--container', {
enabledPercentUpdate: true,
scratchType: SCRATCH_TYPE.CIRCLE,
containerWidth: 375,
containerHeight: 667,
imageForwardSrc: 'images/sunset.png',
imageBackgroundSrc: '',
htmlBackground: `<div class="text">
<h1>Eclipse</h1>
Tus labios producen una risa<br>
Que eclipsa el atardecer.<br>
Y detiene el viento,<br>
Y apacigua las olas.<br><br>
Y se propaga por el aire<br>
Como una onda, hacia mis oídos.<br>
Y mi corazón se salta un palpitar,<br>
Y mi cerebro se desconecta.<br><br>
De pronto tus ojos brillan,<br>
Y la lengua recorre tus labios.<br>
Y tus dientes se separan<br>
Y estallan, en una carcajada.<br><br>
Un ciclón de alegría me estremece,<br>
Y los cristales vibran,<br>
Y la tierra tiembla.<br>
¡Tal es el poder de tu sonrisa!</div>`,
clearZoneRadius: 30,
percentToFinish: 100,
nPoints: 30,
pointSize: 20,
callback: function () { }
})
sc.init();
});
</script>
</body>
</html>