diff options
| author | tim b <timb@camcompu.home> | 2010-08-13 12:33:53 -0700 |
|---|---|---|
| committer | tim b <timb@camcompu.home> | 2010-08-13 12:33:53 -0700 |
| commit | f031cab0fd7db4ad11ea5b448fa2b4ecdf20ada7 (patch) | |
| tree | 198608ebef32f706495ce599542f1c866d7195d5 /template/fullscreen.st | |
| parent | db3d22ba1c1731e873a5a9296aad94071cdd163b (diff) | |
initial fullscreen image thing
Diffstat (limited to 'template/fullscreen.st')
| -rw-r--r-- | template/fullscreen.st | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/template/fullscreen.st b/template/fullscreen.st new file mode 100644 index 0000000..ccda851 --- /dev/null +++ b/template/fullscreen.st @@ -0,0 +1,20 @@ +<html> +<head> +<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> +<script src="$domain$/static/js/pichat.js"></script> +<script src="$domain$/static/js/fullscreen.js"></script> +<style> +html, body, div, img { margin: 0; padding: 0; border: 0; overflow: hidden; } +#controls { display: none; } +#big-image { width: 100%; height: 100%; } +</style> +</head> +<body> +<img id="big-image"></img> +<div id="controls"></div> +<script> +Timestamp = $timestamp$; +initFullscreen() +</script> +</body> +</html>
\ No newline at end of file |
