-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·54 lines (52 loc) · 1.67 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
---
layout: default
---
<link href="css/style.css" type="text/css" rel="stylesheet">
<link href="color/default.css" rel="stylesheet">
<!-- Section: intro -->
<section id="intro" class="intro">
<div class="slogan">
<h5>Association of</h5>
<h2><span id="qualities"></span><span class="blinking-cursor">_</span>
</h2>
<h5>Undergraduates</h5>
<a href="http://www.cs.cornell.edu/">
<img src = "img/cu_logo.gif" height="80"></img>
</a> </br>
<div class="heading">
<h4><span id="qualities2"></span></h4>
</div>
</div>
<!-- Hello World Script -->
<script>
(function() {
var message_str = "Computer Science"
var showText = function(target, message, index, interval) {
if (index < message.length) {
$(target).append(message[index++]);
setTimeout(function() {
showText(target, message, index, interval);
}, interval);
}
}
$(function() {
showText("#qualities", message_str, -1, 150);
});
})()
</script>
<script>
(function() {
var message_str = "promoting passion of computing for any person ... any study ... since 1994."
var showText = function(target, message, index, interval) {
if (index < message.length) {
$(target).append(message[index++]);
setTimeout(function() {
showText(target, message, index, interval);
}, interval);
}
}
$(function() {
showText("#qualities2", message_str, -1, 70);
});
})()
</script>