Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html id="html" xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Winning</title>
</head>
<body>
<div id="tweet"></div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
$(document).ready(function(){
var
$tweet = $('#tweet'),
tweets;
$.getJSON('http://twitter.com/status/user_timeline/CharIieeSheen.json?count=30&callback=?', function(response) {
tweets = response;
displayTweet(0);
});
function displayTweet(i) {
$tweet.fadeOut(function() {
$tweet.html(tweets[i].text).fadeIn();
});
if(++i >= tweets.length)
i = 0;
window.setTimeout(function() {
displayTweet(i);
}, 2000);
}
});
/* ]]> */
</script>
</body>
</html>