-
Notifications
You must be signed in to change notification settings - Fork 3
/
demo.html
45 lines (39 loc) · 898 Bytes
/
demo.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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>jQuery Background Cover Demo</title>
<style>
html, body, div
{
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
.container {
/* Demo Styles */
width: 50%;
height: 300px;
margin: 20px auto;
border: 3px solid black;
}
</style>
</head>
<body>
<img src="http://lorempixel.com/900/900/sports/5" width="900" height="900" class="backgroundCover" />
<div class="container">
<img src="http://lorempixel.com/900/600/people/4" width="900" height="600" class="backgroundCover" />
</div>
</article>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="jquery.backgroundcover.js"></script>
<!-- DEMO SCRIPT -->
<script>
$(function() {
$(".backgroundCover").backgroundCover();
});
</script>
</body>
</html>