-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtweet.html
More file actions
26 lines (21 loc) · 866 Bytes
/
Copy pathtweet.html
File metadata and controls
26 lines (21 loc) · 866 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Scrolling Tweet Ticker </title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="demo.css">
<link rel="stylesheet" type="text/css" href="css/scrolling.tweet.ticker-2.0.3.css">
</head>
<body>
<div id="tweetticker1" class="ticker"></div>
<!--<div id="tweetticker2" class="ticker"></div>-->
<script type="text/javascript" src="scrolling.tweet.ticker-2.0.3.js"></script>
<script type="text/javascript">
ScrollingTweetTicker.defaults.serverScriptUrl = 'http://localhost/myDemo/instagramApi/live/ver1/server/index.php';
ScrollingTweetTicker.defaults.displayErrorMessage = true;
var ticker1 = ScrollingTweetTicker.create('tweetticker1', {
screenName: 'twitter'
});
</script>
</body>
</html>