-
Notifications
You must be signed in to change notification settings - Fork 0
/
preview.html
85 lines (72 loc) · 2.28 KB
/
preview.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Preview - Mãe Terra</title>
<meta name="author" content="sindevo.com">
<meta name="description" content="web app mobile template">
<link rel="stylesheet" href="preview/preview.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,700,900' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="preview/js/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
var $ = jQuery.noConflict();
$('.video_button').click(function(){
$('.video_testing_popup').fadeIn();
});
$('.close_video_testing').click(function(){
$('.video_testing_popup').fadeOut();
});
});
</script>
</head>
<body>
<style>
.main_content {
width: 100% !important;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
margin: auto;
padding: 20px 0;
position: relative;
}
</style>
<div class="main_content">
<img style="margin-bottom: 20px;" src="/images/logopna.jpg.jpg" width="200px" height="200px" alt="">
<div class="iphone_bg">
<div class="mobile_wrap">
<iframe id="frame" frameborder="no" border="0" scrolling="no" width="320px" height="568px;"></iframe>
</div>
</div>
<img style="margin-top: 20px;" src="/images/logo-spaceapp-black.png" width="300px" alt="">
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" charset="utf-8">
var $ = jQuery.noConflict();
$(document).ready(function () {
$("#frame").attr("src", "index.html");
$("#main").click(function () {
$("#frame").attr("src", "index.html");
});
$("#orange").click(function () {
$("#frame").attr("src", "index_orange.html");
});
$("#grayscale").click(function () {
$("#frame").attr("src", "index_grayscale.html");
});
$("#blue").click(function () {
$("#frame").attr("src", "index_blue.html");
});
$("#turquoise").click(function () {
$("#frame").attr("src", "index_turquoise.html");
});
$("#red").click(function () {
$("#frame").attr("src", "index_slider.html");
});
});
</script>
</body>
</html>