-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathombre.html
107 lines (92 loc) · 4.6 KB
/
ombre.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE HTML>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="favicon icon" href="assets/images/favicon.png">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico" />
<title>Amicalife</title>
<link rel="stylesheet" href="/assets/css/parallax.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="/assets/css/amicalife.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="/assets/zoombox/zoombox.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="main">
<div id="content">
<div class="void-medium"></div>
<div class="story" id="intro">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<p class="ombre">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
</div>
</div>
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>-->
<!--<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>-->
<script src="/assets/js/jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="/assets/zoombox/zoombox.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(function($){
$('a.zoombox').zoombox();
});
</script>
<script type="text/javascript">
(function($){
$.fn.juizScrollTo = function(speed){
if(!speed) var speed = 'slow';
return this.each(function(){
$(this).click(function(){
var goscroll = false;
var the_hash = $(this).attr("href");
var regex = new RegExp("(.*)\#(.*)","gi");
var the_element = '';
if(the_hash.match("\#(.+)")) {
the_hash = the_hash.replace(regex,"$2");
if($("#"+the_hash).length>0) {
the_element = "#" + the_hash;
goscroll = true;
}
else if($("a[name=" + the_hash + "]").length>0) {
the_element = "a[name=" + the_hash + "]";
goscroll = true;
}
if(goscroll) {
var container = 'html';
if ($.browser.webkit) container = 'body';
$(container).animate({
scrollTop:$(the_element).offset().top
}, speed,
function(){$(the_element).attr('tabindex','0').focus().removeAttr('tabindex');});
return false;
}
}
});
});
};
})(jQuery)
$('a[href^="#"]').juizScrollTo('fast').css('color','red');
</script>
<!--
<script src="/assets/js/jquery.mousewheel.min.js" type="text/javascript"></script>
<script src="/assets/js/jquery.simplr.smoothscroll.js" type="text/javascript"></script>
-->
<script src="/assets/js/parallax.js" type="text/javascript"></script>
<script src="/assets/js/amicalife.js" type="text/javascript"></script>
</body>
</html>