-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathin.html
43 lines (39 loc) · 978 Bytes
/
in.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
<!doctype html>
<html>
<head>
<title>SPACE PONG SUPER</title>
<script src='Scripts/jquery-1.10.js'></script>
<script src='Scripts/jqeasing.js'></script>
<script src='Scripts/bpopup.js'></script>
<style>
#rules{
background : url('images/pattern.jpg');
padding : 30px ;
border-radius : 30px ;
font : bold 20px tahoma ;
position : absolute ;
left : 500px ;
}
</style>
</head>
<body background="images/pattern1.jpg">
<div id="rules" style="display:none">
<center><h1>3-D Pong</h1>
<p>Altimated Pong Game for Dummies !<br>
<button><a href="mainIndex.html">PLAY NOW</a></button>
</center>
</div>
<script>
window.onload = loader;
function loader(){
$('#rules').bPopup({
//onClose: function() { game.restart() },
modalClose : false,
easing: 'easeOutBack', //uses jQuery easing plugin
speed: 2500,
transition: 'slideIn'
});
}
</script>
</body>
</html>