Skip to content

Instantly share code, notes, and snippets.

@tfausak
Created February 3, 2012 04:39
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tfausak/1727983 to your computer and use it in GitHub Desktop.
Save tfausak/1727983 to your computer and use it in GitHub Desktop.
Generate a tile-able page for Windows Phone 7.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta content="maximum-scale=1,minimum-scale=1,width=device-width" name="viewport">
<style>
body {
margin: 0;
position: relative;
}
#icon {
display: block;
width: 100%;
}
#title {
bottom: 0;
color: white;
font: 40px/80px 'Segoe UI', sans-serif;
left: 20px;
margin: 0;
position: absolute;
white-space: nowrap;
}
div {
bottom: -100px;
font: 30px/40px 'Segoe UI', sans-serif;
left: 20px;
position: absolute;
}
</style>
<title></title>
</head>
<body>
<img id="icon">
<h1 id="title"></h1>
<div>
Tap <strong>...</strong><br>
Select <strong>pin to start</strong>
</div>
<script>
// Set defaults.
var title = 'taylor.fausak.me',
icon = 'http://taylor.fausak.me/static/images/apple-touch-icon-114x114.png',
url = 'http://taylor.fausak.me/';
// Parse query string.
var query_string = location.search.substring(1),
regex = /([^&=]+)=([^&]*)/g,
get = {},
match;
while (match = regex.exec(query_string)) {
get[decodeURIComponent(match[1])] = decodeURIComponent(match[2])
}
// Set title.
title = get['title'] || title;
document.title = title;
document.getElementById('title').innerHTML = title;
// Set the icon.
icon = get['icon'] || icon;
document.getElementById('icon').src = icon;
// Redirect if this isn't their first time.
url = get['url'] || url;
if (localStorage.getItem(url)) {
window.location.replace(url);
}
else {
localStorage.setItem(url, true);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment