2014-06-28 15:52:48 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!--
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
<html manifest="../manifest.appcache">
|
|
|
|
<head>
|
|
|
|
<title>Bärneruhr - Die Zeit im Wort: Showcase</title>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Bärneruhr" />
|
|
|
|
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr-black.css" data-class="black" data-name="Schwarz" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr-white.css" data-class="white" data-name="Weiss" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr-red.css" data-class="red" data-name="Rot" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr-green.css" data-class="green" data-name="Grün" />
|
2014-06-28 16:04:06 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr-yellow.css" data-class="yellow" data-name="Gelb" />
|
2014-06-28 15:52:48 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr-blue.css" data-class="blue" data-name="Blau" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="../uhr-pink.css" data-class="pink" data-name="Pink" />
|
|
|
|
<link rel="shortcut icon" type="image/png" href="favicon.png" />
|
|
|
|
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png" />
|
|
|
|
<script type="text/javascript" src="../jquery-2.1.0.min.js"></script>
|
|
|
|
<script type="text/javascript" src="../jquery-ui-1.10.4.custom.min.js"></script>
|
|
|
|
<script type="text/javascript" src="../jquery-cookie-1.4.0.js"></script>
|
|
|
|
<script type="text/javascript" src="../uhr.js"></script>
|
|
|
|
</head>
|
|
|
|
<body style="padding:0;margin:0;">
|
|
|
|
<div id="uhr"></div>
|
|
|
|
<p ><a href="..">Go back to the main page</a></p>
|
|
|
|
<script type="text/javascript" src="../uhr-de_CH.js"></script>
|
|
|
|
<script type="text/javascript" src="../uhr-de_CH_genau.js"></script>
|
|
|
|
<script type="text/javascript" src="../uhr-de.js"></script>
|
|
|
|
<script type="text/javascript" src="../uhr-en.js"></script>
|
2014-06-28 22:06:15 +02:00
|
|
|
<script type="text/javascript" src="../uhr-fr.js"></script>
|
2014-06-28 15:52:48 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
(function($) {
|
|
|
|
var width = $(window).width();
|
2014-06-28 15:58:28 +02:00
|
|
|
var height = $(window).height() - 150;
|
|
|
|
var size = width < height ? width : height;
|
|
|
|
if (size < 200) {
|
|
|
|
size = 200;
|
|
|
|
}
|
2014-06-28 15:52:48 +02:00
|
|
|
$('#uhr').uhr({
|
2014-06-28 15:58:28 +02:00
|
|
|
width: size + 'px',
|
2014-06-28 16:38:12 +02:00
|
|
|
language: 'de_CH'
|
2014-06-28 15:52:48 +02:00
|
|
|
});
|
|
|
|
})(jQuery);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|