-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (31 loc) · 874 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Smart Background</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="smartBg.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="smartBg.js"></script>
</head>
<body>
<div class="subgame-backgroundImage"></div>
<style>
html,body, .js-view {
height: 100%;
}
.js-view {
padding: 0px;
}
</style>
<script type="text/javascript">
$( document ).ready(function() {
jQuery('.subgame-backgroundImage').smartBg({
imgBg: 'http://res.freestockphotos.biz/pictures/9/9994-farm-fields-with-mountains-in-the-background-landscape-pv.jpg',
showArrow: true,
keepVisible: true
});
});
</script>
</body>
</html>