-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_fivey.html
More file actions
87 lines (84 loc) · 2.39 KB
/
Copy pathindex_fivey.html
File metadata and controls
87 lines (84 loc) · 2.39 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Marketing Panel</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="js/slick.css">
<link rel="stylesheet" type="text/css" href="js/slick-theme.css">
<style type="text/css">
html, body {
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
.slider {
width: 100vw;
margin: 0;
}
.slick-slide img {
width: 100%;
}
.slick-prev:before,
.slick-next:before {
color: black;
}
.slick-slide {
transition: all ease-in-out .3s;
opacity: .2;
}
.slick-active {
opacity: 1;
}
.slick-current {
opacity: 1;
}
.slick-dots {
bottom: 1vh;
}
.slick-dots li button:before {
color: #fff;
font-size: 2vw;
}
.slick-dots li.slick-active button:before {
color: #fff;
opacity: 1;
}
</style>
</head>
<body>
<section class="variable slider">
<div>
<a href="javascript:void(0);" onClick="parent.postMessage({type: 'LC-LobbyAction', action: 'RedeemCoupon', params: {couponCode: 'TEST'}}, '*');"><img src="img/mkp01.png"></a>
</div>
<div>
<a href="javascript:void(0);" onClick="parent.postMessage({type: 'LC-LobbyAction', action: 'Deposit', params: {}}, '*');"><img src="img/mkp02.png"></a>
</div>
<div>
<a href="javascript:void(0);" onClick="parent.postMessage({type: 'LC-LobbyAction', action: 'LaunchGame', params: {gameId: '18-262'}}, '*');"><img src="img/mkp03.png"></a>
</div>
<div>
<a href="javascript:void(0);" onClick="parent.postMessage({type: 'LC-LobbyAction', action: 'SignUp', params: {}}, '*');"><img src="img/mkp04.png"></a>
</div>
<div>
<a href="javascript:void(0);" onClick="parent.postMessage({type: 'LC-LobbyAction', action: 'LaunchExternalLobby', params: {externalLobbyId: 1}}, '*');"><img src="img/mkp05.png"></a>
</div>
</section>
<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
<script src="js/slick.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(document).on('ready', function() {
$(".variable").slick({
mobileFirst: true,
responsive: true,
autoplay: true,
dots: true,
autoplaySpeed: 3000,
infinite: true,
arrows: false
});
});
</script>
</body>
</html>