-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (31 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://cdn.firebase.com/js/client/2.0.5/firebase.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/counter.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<title>Poof</title>
</head>
<body>
<section id="first">
<textarea class="poofContent"></textarea>
<button type="button" onclick="pushCharNum(); swapSections()">Poof</button>
</section>
<section id="second">
<div id="counter"></div>
<div id="destroyRequest">
<p>How would you like to destroy your message?</p>
<br>
<textarea class="destroyAction"></textarea>
<button type="button" onclick="destroyAction()">Submit</button>
</div>
<div id="destroyMessage"></div>
<br><br>
<a href="https://twitter.com/intent/tweet?button_hashtag=pooooof" class="twitter-hashtag-button" data-size="large" data-related="pooooof_it" data-url="http://pooooof.com">Tweet #pooooof</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</section>
</body>
</html>