This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
156 lines (139 loc) · 6.65 KB
/
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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<title>Dynamic Code Injection</title>
<link href='http://fonts.googleapis.com/css?family=Cuprum' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<style type="text/css">
/* NAVIGATION STYLES */
.dci_header{
position: fixed !important;
width:100%;
height:90px;
z-index:9999;
}
.standardNav{
position: fixed !important;
overflow: visible;
top: 0;
right: 50%;
width: 600px;
z-index: 9999;
margin-right: -530px;
text-align: right;
}
.standardNav li{
display: block;
float: left;
}
.standardNav li a{
display: block;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<!-- / -->
<script type="text/javascript">
$(document).ready(function(){
//Page scrolling
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top - 90;
$('html,body')
.animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});
//Make the top men active when on that section
$("#top-bar-menu ul li a").click(function() {
$("#top-bar-menu ul li a").removeClass('active');
$(this).addClass("active"); //Add "active" class to selected tab
});
});
</script>
</head>
<body>
<header class="dci_header">
<div class="dci_wrapper">
<a class="dci_donate_us" href="#donate_uddress">Donate Us</a>
<nav class="dci_mainmenu_wrapper">
<ul id="nav" class="dci_mainmenu pageScrollerNav standardNav top light">
<li><a href="#description">Description</a></li>
<li><a href="#feature">Demo</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="https://github.com/dyci/dyci-main">GitHub Page</a></li>
</ul>
</nav>
<div class="dci_clearfix"></div>
</div>
</header>
<div id="description" class=" dci_main_wrapper">
<div class="section dci_wrapper_for_top_rules">
<div class="dci_wrapper">
<div class="dci_maintext_wrapper">
<h1 class="dci_main_title">Dynamic Code Injection</h1>
<div class="dci_main_desc">
<p>Change your code and see the results right away. It's that simple.</p>
<p>Dynamic Code Injection will boost your productivity by saving the time you waste while waiting for project to recompile and restart on simulator. In other words, no more standby between altering your code or resources and seeing the actual result.</p>
<p>And we promise, you'll never miss that progress bar and "Compiling 32 of 32489 resources" again:)</p>
</div>
<div class="dci_clearfix"></div>
</div>
</div>
</div>
<div class="dci_download_wrapper">
<div class="dci_wrapper">
<div class="dci_illustration_wrapper">
<button class="dci_download" onClick="window.location.href='https://github.com/DyCI/dyci-main/archive/master.zip'">Download</button>
<img src="img/main_illustration.png" alt="Dynamic Code Injection for iOS">
</div>
</div>
</div>
<div id="feature" class="section dci_wrapper_for_top_rules dci_features_wrapper">
<div class="dci_wrapper ">
<article>
<h2 class="dci_feature_title">Demo</h2>
<!-- <ul class="dci_feature_list">
<li><a href="#"><img src="img/features_1.png" alt=""></a></li>
<li><a href="#"><img src="img/features_2.png" alt=""></a></li>
<li><a href="#"><img src="img/features_3.png" alt=""></a></li>
<li><a href="#"><img src="img/features_1.png" alt=""></a></li>
<li><a href="#"><img src="img/features_2.png" alt=""></a></li>
<li><a href="#"><img src="img/features_3.png" alt=""></a></li>
</ul> -->
<div width="100%" style="background-color: #e0e0e0; padding-top:30px; padding-bottom: 30px;">
<iframe width="900" height="550" src="http://www.youtube.com/embed/8nyEpAqUug4" frameborder="0" allowfullscreen style="display: block; margin: 0 auto;"></iframe> </div>
<div class="dci_clearfix"></div>
</article>
</div>
</div>
<div id="about" class="section dci_wrapper_for_top_rules dci_about_wrapper">
<div class="dci_wrapper">
<article>
<h2 class="dci_about_title">About Us</h2>
<div class="dci_about_text">
<img src="img/trollo-team.png" alt="Team" style="width: 300px;height: 215px;">
<p>Howdy. We're guys from Stanfy and we enjoy making iPhone and iPad apps.</p>
<br>
<p>We have a clear obsession for clean code, elegant design and making what we do clear as a whistle.</p>
<br>
<p>Feel free to contact us if you have any questions or suggestions about DYCI. You can also check out what we do in the spare time <a href="http://dyci.github.com">here</a> and here. </p>
</div>
<div class="dci_clearfix"></div>
</article>
</div>
</div>
</div>
<footer class="dci_footer_wrapper">
<div class="dci_wrapper">
<p class="dci_footer_copyright">© 2014 Stanfy</p>
<a href="#" class="dci_footer_contact_link" target="_blank">Contact Us</a>
<div class="dci_clearfix"></div>
</div>
</footer>
</body>
</html>