-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
141 lines (107 loc) · 3.54 KB
/
index2.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
<!DOCTYPE HTML>
<html>
<head>
<title>sTudoring</title>
<link rel="stylesheet" type="text/css" href="style/foundation.min.css" />
<link rel="stylesheet" type="text/css" href="static/style/style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,700' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
</head>
<body>
<div class="navbar">
<div class="row">
<div class="columns large-12 small-12">
<form>
<ul>
<li> <a href="index2.html">sTudoring </a></li>
<li> <input type="submit" name="submit"> </input> </li>
<li> password: <input type="password" name="password"> </input> </li>
<li> username: <input type="text" name="username"> </input> </li>
</ul>
</form>
</div>
</div>
</div>
<div class="homestripe ineed">
<div class="row">
<div class="columns large-12 small-12">
<div class="bigform ineedform textwrapper">
<form>
<p> <span id="ineed"> I need help </span> <span id="ineedone">with <input type="text" name="class" placeholder="XXXX ####">. </span> </p>
<p> <span id="ineedtwo">I am located at <input type="text" name="location" placeholder="location">.</span> </p>
<p> <span id="ineedthree"> I am willing to pay <input type="text" name="howmuch" placeholder="$$$">.</span> </p>
<p> <input type="submit" name="submit" id="ineedfour"> </p>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="homestripe iwant">
<div class="row">
<div class="columns large-12 small-12">
<div class="bigform iwantform textwrapper">
<form>
<p> <span id="iwant">I want to tutor </span> <span id="iwantone">for <input type="text" name="class" placeholder="XXXX ####">. </span> </p>
<p> <span id="iwanttwo"> I am located at <input type="text" name="location" placeholder="location">.</span> </p>
<p> <span id="iwantthree"> I am willing to get paid <input type="text" name="howmuch" placeholder="$$$">. </span> </p>
<p> <input id="iwantfour" type="submit" name="submit"> </p>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
var timeDelay = 400;
jQuery(document).ready(function() {
$( "#ineed" ).click(function() {
$(".ineed").addClass("active");
$(".ineedform").addClass("active");
$("#ineedone").delay(timeDelay).queue(function(next){
$(this).addClass("active");
next();
});
$("#ineedtwo").delay(timeDelay*2).queue(function(next){
$(this).addClass("active");
next();
});
$("#ineedthree").delay(timeDelay*3).queue(function(next){
$(this).addClass("active");
next();
});
$("#ineedfour").delay(timeDelay*4).queue(function(next){
$(this).addClass("active");
next();
});
$("#ineedbutton").delay(timeDelay*5).queue(function(next){
$(this).addClass("active");
next();
});
$(".iwantform").hide();
});
$( "#iwant" ).click(function() {
$(".iwant").addClass("active");
$(".iwantform").addClass("active");
$("#iwantone").delay(timeDelay).queue(function(next){
$(this).addClass("active");
next();
});
$("#iwanttwo").delay(timeDelay*2).queue(function(next){
$(this).addClass("active");
next();
});
$("#iwantthree").delay(timeDelay*3).queue(function(next){
$(this).addClass("active");
next();
});
$("#iwantfour").delay(timeDelay*4).queue(function(next){
$(this).addClass("active");
next();
});
$(".ineedform").hide();
});
});
</script>
</html>