2013-11-19 16:55:01 +01:00
|
|
|
<!DOCTYPE html>
|
2013-11-27 11:12:50 +01:00
|
|
|
<!--
|
|
|
|
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/>.
|
|
|
|
-->
|
2013-11-19 16:55:01 +01:00
|
|
|
<html manifest="manifest.appcache">
|
|
|
|
<head>
|
2013-11-25 16:58:21 +01:00
|
|
|
<title>Die Zeit als Wort - in HTML, CSS und JS</title>
|
|
|
|
<script type="text/javascript" src="jquery-2.0.3.min.js"></script>
|
|
|
|
<script type="text/javascript" src="jquery.cookie.js"></script>
|
|
|
|
<script type="text/javascript" src="uhr.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="uhr.css" />
|
2013-11-28 09:57:50 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="uhr-black.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="uhr-blue.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="uhr-green.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="uhr-red.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="uhr-white.css" />
|
2013-11-25 16:58:21 +01:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
2013-11-19 16:55:01 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2013-11-27 16:20:47 +01:00
|
|
|
<div id="uhr" class="uhr"></div>
|
2013-11-19 16:55:01 +01:00
|
|
|
<p id="disclaimer">Created by fritteli, inspired by <a href="http://www.qlocktwo.com/">QLOCKTWO</a>.
|
2013-11-27 18:37:38 +01:00
|
|
|
<script type="text/javascript" src="uhr-de_CH.js"></script>
|
|
|
|
<script type="text/javascript" src="uhr-de.js"></script>
|
|
|
|
<script type="text/javascript" src="uhr-en.js"></script>
|
2013-11-19 16:55:01 +01:00
|
|
|
<script type="text/javascript">
|
2013-11-28 09:57:50 +01:00
|
|
|
var uhr = new Uhr($('#uhr'));
|
2013-11-19 16:55:01 +01:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|