This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
demo.html
52 lines (50 loc) · 1.98 KB
/
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
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes">
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script type='text/javascript' src='resources/jquery.cookie.js'></script>
<script type='text/javascript' src='jquery.roadblocked.js'></script>
<script type='text/javascript'>
$(document).ready(function(){
$('body').roadblocked({
'devices' : {
iphone : { img:'iphone.jpg', link:'http://itunes.apple.com/us/app/slate.com/id357555242?mt=8'},
ipod : { img:'iphone.jpg', link: 'http://itunes.apple.com/us/app/slate.com/id357555242?mt=8' },
android : { img:'android.jpg', link: 'https://market.android.com/details?id=com.wapo.slate.android&hl=en' },
ipad : { img:'ipad.jpg', link: 'http://itunes.apple.com/us/app/slate-magazine/id384914589?mt=8' }
},
'imgPath' : 'demo_images',
'lifetime' : 1,
'overlayBackgroundColor' : '#000',
'dismissLabel' : 'dismiss_label.jpg',
'dismissLabelAlign' : 'center',
'dismissLabelHeight' : '7.5%',
'campaignName' : 'sl-mag-interstitial'
});
});
</script>
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>jQuery.Roadblocked Demo</title>
<meta name="description" content="" />
<meta name="author" content="Blaine Sheldon" />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</head>
<body>
<div>
<header>
<h1>jQuery.Roadblocked Demo</h1>
<h2>Slate Magazine Apps</h2>
</header>
<footer>
<p>Created by Blaine Sheldon</p>
</footer>
</div>
</body>
</html>