-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdealme.html
More file actions
89 lines (81 loc) · 2.88 KB
/
Copy pathdealme.html
File metadata and controls
89 lines (81 loc) · 2.88 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Whatarthurdoes</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/jquery.lightbox-0.5.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="js/jquery.js"></script>
<!-- Loading -->
<script type="text/javascript">
$(function () {
$('.main_content, .main_navi').hide();
$(window).load(function () {
$('#loader').fadeOut();
$('.main_content, .main_navi').fadeIn(2000);
});
});
$(document).ready(function () {
$("body").css("display", "none");
$("body").fadeIn(2000);
$("a.transition").click(function (event) {
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(1000, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
</script>
</head>
<body id="view-work">
<div id="container">
<div class="stripe"></div>
<div id="content">
<!-- Header -->
<div id="header">
<!-- <div id="loader"><img alt="" src="img/ajax-loader.gif" /></div> -->
<a href="index.html"><img alt="" class="logo" src="img/logo.png" /></a>
<ul class="main_navi">
<li><a class="transition" href="index.html">Home</a></li>
<li class="current"><a href="index.html#best_work">Projects</a></li>
<li><a href="index.html#info">About</a></li>
<li><a href="Arthur_Yan_Resume.pdf" target="_blank">Resume</a></li>
</ul>
</div>
<!-- Top Content -->
<div class="main_content">
<div class="view-work">
<div class="work_info_text">
<h1 class="title_work">Deal Me</h1>
<div class="description">
<p>Deal Me is an Android app that searches for local deals and sales in the customer's area. The app utilizes the Yellow Pages API to search for sales at retail stores.
</p>
</div>
<h4>Tools:</h4>
<br>
<ul class="tools">
<li>Java</li>
<li>MongoDB</li>
<li>XML</li>
<li>Yellow Pages API</li>
</ul>
</div>
<div class="title_img">
<h3 class="center_txt">Home Screen</h3>
<img alt="" src="img/dealme/dealme1.png" class="center_img" />
<h3 class="center_txt">Shown Deals</h3>
<img alt="" src="img/dealme/dealme2.png" class="center_img" />
</div>
</div>
</div>
</div>
<div id="footer">© Created by the one and only Arthur Yan 2015
</div>
</div>
</div>
</div>
</body>
</html>