-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathdevelopment-setup.html
More file actions
66 lines (57 loc) · 2.41 KB
/
development-setup.html
File metadata and controls
66 lines (57 loc) · 2.41 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
<!doctype html>
<html>
<head>
<title>Countdown</title>
<style>
div { border:1px solid red;}
span { border:1px solid green;}
body {background-color: lightgray;}
.circle {
border-radius: 50%;
display: inline-block;
width: 100px;
height: 100px;
background: green;
border:5px solid red !important;
}
</style>
</head>
<body>
<h1>This is a Test H1</h1><br><br>
<h2>a very simple test H2</h2>
<div>a tiny DIV</div>
<span style="width:150px;height:50px;">SPAN me!</span>
<h1 style='width:250px'>an H1 with width</h1>
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<div class="circle" box2d-shape="circle"></div>
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png">
<img src="./img/f19n.png" width="200px" height="200px">
<img src="http://www.fullstackoptimization.com/img/fullstackoptimization-logo-114.png">
<img src="http://chris.smith.name/assets/github.png" width="200px" height="200px" box2d-restitution="0" box2d-friction="0" box2d-shape="circle">
<video id="barbapapa" controls="controls" style="" autobuffer width=400 height=200>
<source src="http://www.barbafan.de/wp-content/ipad-ausmalbilder/tron.webm" type='video/webm; codecs="vp8, vorbis"'>
<source src="http://www.barbafan.de/wp-content/ipad-ausmalbilder/tron.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
<source src="http://www.barbafan.de/wp-content/ipad-ausmalbilder/tron.ogv" type='video/ogg; codecs="theora, vorbis"'></video>
<script src="./js/vendor/box2dweb/Box2dWeb-2.1.a.3.min.js"></script>
<script src="./js/vendor/jquery.min.js"></script><!-- 1.8.3 -->
<script src="./js/vendor/jquery.bodysnatch.js"></script>
<script src="./js/vendor/RequestAnimationFrame.js"></script>
<script src="./js/lib/main.js"></script>
<!--<script src="./js/lib/jquery.box2d.min.js"></script>-->
<script>
$(document).ready(function() {
//$("img").each(function(index){s=$(this).attr('src');$(this).attr('src','').attr('src',s+'?'+Math.floor(Math.random()*100000000000));})
$("h1, h2, img, video, div, span").css('border-color','lightyellow').box2d({'x-velocity':0,'friction':null, 'density':null,'restitution':null, 'debug':true}).css('border','1px solid blue');
});
</script>
</body>
</html>