-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
367 lines (355 loc) · 19.8 KB
/
index.html
File metadata and controls
367 lines (355 loc) · 19.8 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
<!DOCTYPE html>
<html>
<head>
<title>Web & Mobile App Development | Manila Philippines | DYNAMIC OBJX</title>
<link rel="shortcut icon" href="https://cdn.rawgit.com/dynobjx/dynobjx.github.io/ae850f17ed206c60a75c8a857fdbc0da486b29ad/D.ico">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.js'></script>
<link href='https://api.mapbox.com/mapbox.js/v2.4.0/mapbox.css' rel='stylesheet'/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.rawgit.com/dynobjx/dynobjx.github.io/d4d6c45/main.css"/>
<meta name="description" content="We're a web & mobile software development company based in Manila, Philippines focused on Java and IOS (iPhone & iPad), Android App Development"/>
<meta prefix="og: http://ogp.me/ns#" property="og:type" content="blog"/>
<meta prefix="og: http://ogp.me/ns#" property="og:title" content="Web & Mobile App Development | Manila Philippines | DYNAMIC OBJX"/>
<meta prefix="og: http://ogp.me/ns#" property="og:description" content="We're a web & mobile software development company based in Manila, Philippines focused on Java and IOS (iPhone & iPad), Android App Development"/>
<meta prefix="og: http://ogp.me/ns#" property="og:url" content="http://dynamicobjx.com/"/>
<meta prefix="og: http://ogp.me/ns#" property="og:site_name" content="Web & Mobile App Development | Manila Philippines | DYNAMIC OBJX"/>
</head>
<body onload="initMap(); goTo('#we');">
<script>
var pages = [ '#we', '#lets', '#about', '#blog', '#services', '#contact' ];
var pagesArrowDown = [ '#we', '#lets', '#about', '#services', '#blog'];
function initMap () {
L.mapbox.accessToken = 'pk.eyJ1Ijoia2xiaWF6b24iLCJhIjoiY2l5dG1qaDBxMDAxcDMybzZrNnJwd2h5ZyJ9.dOxddjg_norxMi4GL_Ul-w';
var mymap = L.mapbox.map('mapid', 'mapbox.streets', {
zoomControl:false
}).setView([14.5878000,121.0613300], 17);
var marker = L.marker([14.5878000,121.0613300]).addTo(mymap);
marker.bindPopup("<b>DYNAMIC OBJX</b>").openPopup();
mymap.scrollWheelZoom.disable();
$('#verticalContact').fadeOut(10);
};
function goTo (selector) {
if (selector === 'we') {
navigate('we-nav');
}
$('html,body').animate({ scrollTop: $(selector).offset().top }, 1000);
};
function navigate(nav, text) {
if (!$(nav).hasClass('active')) {
remove(nav);
$(nav).addClass('active');
$(text).fadeIn(180);
$(text).removeClass('inactive');
if (nav === '#contact-nav') {
$('#verticalContact').fadeIn(500);
} else {
$('#verticalContact').fadeOut(10);
}
}
};
function remove(cl) {
pages.forEach(function(page) {
if (cl !== page + '-nav') {
$(page + '-nav').removeClass('active');
$(page + '-text').fadeOut(0);
}
});
}
function isVisible($el) {
var winTop = $(window).scrollTop();
var winBottom = winTop + $(window).height();
var elTop = $el.offset().top;
var elBottom = elTop + $el.height();
return (elBottom - winTop >= $el.height()/2) && (elBottom - winTop <= $el.height() * elBottom/$el.height());
}
function responsiveArrow(section) {
var sectionHeight = 0;
pagesArrowDown.some(function(page) {
sectionHeight += $(page).height() || $('#contact').height();
return page === '#' + section;
});
if ($('#' + section).height() >= $(window).height()) {
var excess = section === 'we' ? $('#' + section).height() - ($('body').scrollTop() + $(window).height()) :
sectionHeight - ($('body').scrollTop() + $(window).height());
if (excess !== undefined) {
$('#left-' + section).css('bottom', (section !== 'contact' ? 92 : 170) + (excess >= 0 ? excess : 0));
$('#right-' + section).css('bottom', (section !== 'contact' ? 92 : 170) + (excess >= 0 ? excess : 0));
$('#midRight-' + section).css('bottom', (section !== 'contact' ? 122 : 210) + (excess >= 0 ? excess : 0));
}
}
}
$(function() {
$(window).scroll(function() {
if (isVisible($("#first")) || isVisible($("#first-xs"))) {
navigate('#we-nav', '#we-text');
responsiveArrow('we');
} else if (isVisible($("#second")) || isVisible($("#second-xs"))) {
navigate('#lets-nav', '#lets-text');
responsiveArrow('lets');
} else if (isVisible($("#third")) || isVisible($("#third-xs"))) {
navigate('#about-nav', '#about-text');
responsiveArrow('about');
} else if (isVisible($("#fourth")) || isVisible($("#fourth-xs"))) {
navigate('#services-nav', '#services-text');
responsiveArrow('services');
} else if (isVisible($("#sixth")) || isVisible($("#sixth-xs"))) {
navigate('#contact-nav', '#contact-text');
responsiveArrow('contact');
}
// DETECT FIXED FOOTER
const offsetHeight = $('#we').height() - $(window).height();
if ($('body').scrollTop() >= $('#we-header').height()) {
$('.diamond').addClass('landscape');
} else {
$('.diamond').removeClass('landscape');
}
if ($('body').scrollTop() >= offsetHeight + $('#footer').height()) {
if (!$('#footer').hasClass('fixed')) {
$('#footer').addClass('fixed').fadeIn('slow');
$('#contact').css('margin-bottom', $('#footer').height());
}
} else if ($('body').scrollTop() <= offsetHeight) {
$('#footer').hide();
} else {
if ($('#footer').hasClass('fixed')) {
$('#footer').removeClass('fixed');
}
}
});
});
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-16047834-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script');
ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<div class="vertical-contact" id="verticalContact"></div>
<div class="vertical-line">
<div class="we diamond active" onclick="goTo('#we');" id="we-nav"></div>
<div class="lets diamond" onclick="goTo('#lets');" id="lets-nav">
<span class="nav-text inactive" id="lets-text">LET'S DO SOFTWARE TOGETHER</span>
</div>
<div class="about diamond" onclick="goTo('#about');" id="about-nav">
<span class="nav-text inactive" id="about-text">ABOUT US</span>
</div>
<div class="services diamond" onclick="goTo('#services');" id="services-nav">
<span class="nav-text inactive" id="services-text">SERVICES</span>
</div>
<div class="contact diamond" onclick="goTo('#contact');" id="contact-nav">
<span class="nav-text inactive" id="contact-text">CONTACT US</span>
</div>
</div>
<!-- WE ARE DYNAMICOBJX -->
<div class="page flex stretch-children" id="we">
<div class="navbar navbar-static-top header-shadow no-margin" id="we-header">
<div class="container flex flex-row flex-center">
<img src="https://cdn.rawgit.com/dynobjx/dynobjx.github.io/master/00_dynobjx_logo_header.png" class="dynamic-image" alt="Dynamic Objx logo">
<div class="flex-fit">
<input type="button" class="btn contact-btn dynamic-text pull-right" value="CONTACT US" onclick="goTo('#contact');">
</div>
</div>
</div>
<div class="col-sm-12 no-padding bg-black flex-fit flex flex-row stretch-children" id="first-xs">
<div class="col-sm-6 no-padding first-image" id="we-left">
<div class="hidden-xs">
<div class="triangle-left" onclick="goTo('#lets');" id="left-we"></div>
<div class="triangle-right" onclick="goTo('#lets');" id="right-we"></div>
<div class="mid-right" onclick="goTo('#lets');" id="midRight-we"></div>
</div>
</div>
<div class="col-sm-6 no-padding text-body we-dyn flex-fit" id="we-right">
<div class="col-xs-10 col-xs-offset-1 dynamic-text we">
<h1 class="dynamic-text title-text we">WE ARE DYNAMIC OBJX</h1>
<br>
<div class="text-color we" id="first">
<p class="content-margin">
Hello world.
</p>
<p class="content-margin">
We are Dynamic Objx Labs Inc, a software development company based in Manila, Philippines. We specialize in building apps for the web and mobile.
</p>
<p class="content-margin">
We have built and delivered web and mobile apps that feature geolocation-based promotions, e-commerce integration, social media integration, push notifications, in-app purchasing etc.
</p>
<p class="content-margin">
We've also worked on various web and mobile systems for the Enterprise as well such as in Inventory Sales and Order Management, Property Management, Tenant Management, Content Management for Mobile Apps, Asset Tracking, Mobile Product Catalog, an Arduino-based connected devices system etc.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 lets-do-footer flex flex-row flex-center" id="footer">
<img src="https://cdn.rawgit.com/dynobjx/dynobjx.github.io/master/00_dynobjx_logo_header.png" class="dynamic-image" alt="Dynamic Objx logo">
<div class="flex-fit">
<p class="pull-right dynamic-text address">
3010 Jollibee Plaza, F. Ortigas Jr Rd<br>
Ortigas Center, Pasig City<br>
Metro Manila, Philippines 1605<br>
</p>
</div>
</div>
<!-- LETS DO SOFTWARE -->
<div class="col-sm-12 no-padding page flex stretch-children lets-do" id="lets">
<div class="flex-fit flex flex-row stretch-children bg-black">
<div class="col-sm-6 no-padding lets-do-image">
<div class="cursor hidden-xs">
<div class="triangle-left" onclick="goTo('#about');" id="left-lets"></div>
<div class="triangle-right" onclick="goTo('#about');" id="right-lets"></div>
<div class="mid-right" onclick="goTo('#about');" id="midRight-lets"></div>
</div>
</div>
<div class="col-sm-6 second text-body lets-xs flex-fit" id="second-xs">
<div class="clearfix">
<div class="pull-right header-padding">
<input type="button" class="btn contact-btn dynamic-text second-contact" value="CONTACT US" onclick="goTo('#contact');">
</div>
</div>
<div class="dynamic-text col-xs-offset-1 col-xs-10">
<h1 class="title-text second-title content-margin">LET'S DO SOFTWARE TOGETHER</h1>
<br class="hide-landscape"><br class="hide-landscape">
<div class="text-color second-text" id="second">
<p class="content-margin">
Web Application Development - We use Angular JS and React JS for the frontend and use technology platforms such as Java (Spring, <a class="lets-link" target="_blank" href="https://www.amazon.com/Play-Framework-Cookbook-Giancarlo-Inductivo/dp/1784393134">Play Framework</a>), Python, Node.js and Golang for backend applications such as REST APIs, payment gateway middleware, asynchronous data processors, media ingestion services etc.
</p>
<p class="content-margin">
Mobile Application Development - For native IOS and Android apps, we use Objective-C, Swift, Java and Kotlin. For quick prototypes and MVPs, we use React-Native for hybrid mobile app development.
</p>
<p class="content-margin">
We love developer tools such as <a class="lets-link" target="_blank" href="https://github.com/ginduc/vagrants">Vagrant</a>, <a class="lets-link" target="_blank" href="http://github.com/ginduc">Github</a> and <a class="lets-link" target="_blank" href="http://hub.docker.com/r/ginduc">Docker</a>. Whether the appropriate methodology is Scrum, Kanban or Waterfall (or a hybrid approach), we believe in collaboration, communication and using the right tools for the job.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- ABOUT US -->
<div class="col-sm-12 no-padding page flex stretch-children about" id="about">
<div class="flex-fit flex flex-row stretch-children bg-black" id="third-xs">
<div class="col-sm-6 no-padding about-image">
<div class="hidden-xs">
<div class="triangle-left" onclick="goTo('#services');" id="left-about"></div>
<div class="triangle-right" onclick="goTo('#services');" id="right-about"></div>
<div class="mid-right" onclick="goTo('#services');" id="midRight-about"></div>
</div>
</div>
<div class="flex-fit col-sm-6 about text-body about-xs">
<div class="clearfix">
<div class="pull-right header-padding">
<input type="button" class="btn contact-btn about dynamic-text" value="CONTACT US" onclick="goTo('#contact');">
</div>
</div>
<div class="dynamic-text col-xs-offset-1 col-xs-10" id="third">
<span class="h1-text title-text about content-margin">ABOUT US</span>
<br class="hide-landscape"><br class="hide-landscape">
<br><br>
<div class="text-color about">
<p class="content-margin">
Based in Manila, Philippines, DYNAMIC OBJX LABS INC is a software development company specializing in Web and Mobile Applications utilizing cutting-edge technologies to create software solutions based on best practices and software that provide the best user experience.
</p>
<p class="content-margin">
We subscribe to agile methodologies and practices such as Scrum, Extreme Programming, Continuous Integration as well as Kanban and Lean Software Development ideologies.
</p>
<p class="content-margin">
We've worked with startups and companies around the world. Manila, Singapore, Tokyo, San Francisco, Paris, Australia to name a few.
</p>
<p class="content-margin">
Dynamic Objx was a co-winner in the 2013 Asian Development Bank and Microsoft "Apps for Asia" competition with the social enterprise platform called "Blood Donors Network". Dynamic Objx was featured as one of the "Top Filipino Tech Companies to Watch" in the Entrepreneur Philippines magazine (June 2012).
</p>
</div>
</div>
</div>
</div>
</div>
<!-- SERVICES -->
<div class="col-sm-12 no-padding page flex stretch-children services" id="services">
<div class="flex-fit flex flex-row stretch-children bg-black" id="fourth-xs">
<div class="col-sm-6 no-padding services services-image">
<div class="hidden-xs">
<div class="col-sm-12 no-padding blue-back"></div>
<div class="triangle-left" onclick="goTo('#contact');" id="left-services"></div>
<div class="triangle-right" onclick="goTo('#contact');" id="right-services"></div>
<div class="mid-right" onclick="goTo('#contact');" id="midRight-services"></div>
</div>
</div>
<div class="flex-fit col-sm-6 services text-body services-xs">
<div class="clearfix">
<div class="pull-right header-padding">
<input type="button" class="btn contact-btn services dynamic-text" value="CONTACT US" onclick="goTo('#contact');">
</div>
</div>
<div class="dynamic-text col-xs-offset-1 col-xs-10" id="fourth">
<span class="h1-text title-text services content-margin">SERVICES</span>
<br class="hide-landscape"><br class="hide-landscape">
<br><br>
<div class="text-color services">
<p class="content-margin">
We offer software development services for web and mobile apps (native and hybrid): fixed-bid projects, developer outsourcing, team augmentation.
</p>
<p class="content-margin">
We provide consultancy for utilizing the cloud for app integrations and deployment environments with top providers such as Amazon Web Services, Google Cloud, Microsoft Azure, Heroku etc.
</p>
<p class="content-margin">
We also provide internet-of-things (IOT) consultancy and have worked with past clients from ideation to deployment using the Arduino platform as the core technology for connected devices solutions and marketing activations.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- CONTACT -->
<div class="col-sm-12 no-padding page flex stretch-children contact" id="contact">
<div class="flex-fit flex flex-row stretch-children bg-black" id="sixth-xs">
<div class="col-sm-6 no-padding contact contact-image">
<div id="mapid"></div>
<div class="triangle-left hidden-xs" onclick="goTo('#we');" id="left-contact"></div>
<div class="triangle-right hidden-xs" onclick="goTo('#we');" id="right-contact"></div>
<div class="contact-right hidden-xs" onclick="goTo('#we');" id="midRight-contact"></div>
</div>
<div class="flex-fit col-sm-6 contact text-body contact-xs">
<div class="dynamic-text col-xs-offset-1 col-xs-10" id="sixth">
<br class="hide-landscape"><br class="hide-landscape"><br><br><br>
<span class="h1-text title-text contact content-margin">CONTACT US</span>
<br class="hide-landscape">
<br class="hide-landscape">
<br>
<h3 class="contact-us">
3010 Jollibee Plaza<br>
F. Ortigas Jr. Road, Ortigas Center<br>
Pasig City, Metro Manila<br>
Philippines 1605<br>
</h3>
<h3 class="contact-us tel-no">
+63 02 6215342<br>
+63 947 8937579
</h3>
<div class="tel-no">
<a target="_blank" href="https://www.facebook.com/dynamicobjxlabs/" class="redirect-fb">
<img src="https://cdn.rawgit.com/dynobjx/dynobjx.github.io/aa91fafdbfad478b10bb45eb9e27f50964eed6e6/fb_50x50.png" class="facebook-icon" alt="Facebook icon">
</a>
<h3 class="contact-us no-margin facebook-link"> /dynamicobjxlabs</h3><br>
<a target="_blank" href="https://twitter.com/DYNAMIC_OBJX/" class="redirect-fb">
<img src="https://cdn.rawgit.com/dynobjx/dynobjx.github.io/8801153/twitter_50x50.png" class="facebook-icon" alt="Twitter icon">
</a>
<h3 class="contact-us no-margin facebook-link"> /DYNAMIC_OBJX</h3><br><br>
<br>
<button class="btn contact-btn send-us dynamic-text">
<a href="mailto:hello@dynamicobjx.com" class="">Send us an email: hello@dynamicobjx.com</a>
</button>
</div>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
</body>
</html>