|
10
|
1 |
<!DOCTYPE html> |
|
|
2 |
<html lang="en"> |
|
|
3 |
<head> |
|
|
4 |
<meta charset="utf-8" /> |
|
|
5 |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
|
|
6 |
<title>Bubble-TV</title> |
|
|
7 |
<meta name="description" content="" /> |
|
|
8 |
<link rel="stylesheet" href="css/base-metric.css" /> |
|
|
9 |
<style type="text/css"> |
|
|
10 |
#container { |
|
|
11 |
width: 300px; |
|
|
12 |
height: 300px; |
|
|
13 |
margin: 200px auto; |
|
|
14 |
padding: 100px; |
|
|
15 |
background: #0031ff; |
|
|
16 |
color: #fff; |
|
|
17 |
} |
|
|
18 |
h1 { |
|
|
19 |
font-size: 24px; |
|
|
20 |
} |
|
|
21 |
h2 { |
|
|
22 |
font-size: 48px; font-weight: bold; margin: 20px 0; |
|
|
23 |
} |
|
|
24 |
</style> |
|
|
25 |
|
|
|
26 |
<script type="text/javascript" src="lib/jquery.min.js"></script> |
|
|
27 |
<script type="text/javascript" src="lib/protoclass.js"></script> |
|
|
28 |
<script type="text/javascript" src="lib/box2d.js"></script> |
|
|
29 |
<script type="text/javascript" src="js/tweetanim.js"></script> |
|
|
30 |
<script type="text/javascript" src="js/tweetvote-anim.js"></script> |
|
|
31 |
<script type="text/javascript" src="js/podium.js"></script> |
|
|
32 |
<script type="text/javascript" src="js/tweetsource.js"></script> |
|
|
33 |
<script type="text/javascript"> |
|
|
34 |
/* Heure de début de l'émission |
|
|
35 |
var startHour = new Date("Feb 24 2012 23:30:00 UTC+0100"); |
|
|
36 |
* */ |
|
|
37 |
var startHour = new Date() - 120000; |
|
|
38 |
|
|
|
39 |
/* Mots-clés pour déclencher la recherche |
|
|
40 |
var searchKeywords = [ '#lgw', '#legrandwebze', 'webze' ]; |
|
|
41 |
* */ |
|
|
42 |
var searchKeywords = ['Sarkozy', 'Hollande', 'Bayrou']; |
|
|
43 |
|
|
|
44 |
$(function() { |
|
|
45 |
|
|
|
46 |
myTweetSource = new Btv_TweetSource({ |
|
|
47 |
keywords: searchKeywords |
|
|
48 |
}); |
|
|
49 |
|
|
|
50 |
myTweetSource.setOnNewTweets(function() { |
|
|
51 |
var _filtered = this.afterDate(startHour); |
|
|
52 |
$("#nbtweets").html(_filtered.count()); |
|
|
53 |
}); |
|
|
54 |
}); |
|
|
55 |
</script> |
|
|
56 |
</head> |
|
|
57 |
<body> |
|
|
58 |
<div id="container"> |
|
|
59 |
<h1>Total des tweets #LGW</h1> |
|
|
60 |
<h2 id="nbtweets"></h2> |
|
|
61 |
</div> |
|
|
62 |
|
|
|
63 |
</body> |
|
|
64 |
</html> |