-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (42 loc) · 1.5 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="pragma" content="no-cache">
<title>Custom Typo Image</title>
<!-- css -->
<link type="text/css" rel="stylesheet" href="css/style.css" />
<!-- jquery -->
<script src="js/jquery/jquery-1.7.2.min.js"></script>
<!-- draggable objects -->
<script src="js/jquery/jquery-ui-1.8.21.custom.min.js"></script>
<!-- solve touch bug on mobiles -->
<script src="js/jquery/jquery-ui-touch-punch.js"></script>
<!-- tweenmax -->
<script src="js/greensock/TweenMax.min.js"></script>
<!-- custom -->
<script src="js/project/Facade.js"></script>
<script type="text/javascript" language="JavaScript">
var facade = new Facade();
$(document).ready(function() {
facade.init();
});
</script>
<noscript>
You need javascript enabled to see this page.
</noscript>
</head>
<body>
<!-- UI -->
<div class="page current" id="engagement">
Texto: <input type="text" name="texto" id="texto" /><br />
<div id="imageContainer">
<!--
this is images from Juan Larios
http://www.coroflot.com/jlarios79/Portfolio-2009
-->
</div>
</div>
</body>
</html>