Skip to content

Commit 2bb4b4a

Browse files
committed
update develop version
1 parent daf83eb commit 2bb4b4a

489 files changed

Lines changed: 21807 additions & 233 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2+
<html>
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
5+
<title>jQuery Countdown</title>
6+
<link rel="stylesheet" href="jquery.countdown.css">
7+
<style type="text/css">
8+
#defaultCountdown { width: 240px; height: 45px; }
9+
</style>
10+
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
11+
<script type="text/javascript" src="jquery.countdown.js"></script>
12+
<script type="text/javascript">
13+
$(function () {
14+
var austDay = new Date();
15+
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
16+
$('#defaultCountdown').countdown({until: austDay});
17+
$('#year').text(austDay.getFullYear());
18+
});
19+
</script>
20+
</head>
21+
<body>
22+
<h1>jQuery Countdown Basics</h1>
23+
<p>This page demonstrates the very basics of the
24+
<a href="http://keith-wood.name/countdown.html">jQuery Countdown plugin</a>.
25+
It contains the minimum requirements for using the plugin and
26+
can be used as the basis for your own experimentation.</p>
27+
<p>For more detail see the <a href="http://keith-wood.name/countdownRef.html">documentation reference</a> page.</p>
28+
<p>Counting down to 26 January <span id="year">2010</span>.</p>
29+
<div id="defaultCountdown"></div>
30+
</body>
31+
</html>
5.74 KB
Loading

assets/countdown/countdownLED.png

339 Bytes
Loading
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* http://keith-wood.name/countdown.html
2+
Arabic (عربي) initialisation for the jQuery countdown extension
3+
Translated by Talal Al Asmari (talal@psdgroups.com), April 2009. */
4+
(function($) {
5+
$.countdown.regional['ar'] = {
6+
labels: ['سنوات','أشهر','أسابيع','أيام','ساعات','دقائق','ثواني'],
7+
labels1: ['سنة','شهر','أسبوع','يوم','ساعة','دقيقة','ثانية'],
8+
compactLabels: ['س', 'ش', 'أ', 'ي'],
9+
whichLabels: null,
10+
digits: ['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩'],
11+
timeSeparator: ':', isRTL: true};
12+
$.countdown.setDefaults($.countdown.regional['ar']);
13+
})(jQuery);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* http://keith-wood.name/countdown.html
2+
* Bulgarian initialisation for the jQuery countdown extension
3+
* Written by Manol Trendafilov manol@rastermania.com (2010) */
4+
(function($) {
5+
$.countdown.regional['bg'] = {
6+
labels: ['Години', 'Месеца', 'Седмица', 'Дни', 'Часа', 'Минути', 'Секунди'],
7+
labels1: ['Година', 'Месец', 'Седмица', 'Ден', 'Час', 'Минута', 'Секунда'],
8+
compactLabels: ['l', 'm', 'n', 'd'], compactLabels1: ['g', 'm', 'n', 'd'],
9+
whichLabels: null,
10+
digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
11+
timeSeparator: ':', isRTL: false};
12+
$.countdown.setDefaults($.countdown.regional['bg']);
13+
})(jQuery);
1.28 KB
Binary file not shown.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/* http://keith-wood.name/countdown.html
2+
* Bosnian Latin initialisation for the jQuery countdown extension
3+
* Written by Miralem Mehic miralem@mehic.info (2011) */
4+
(function($) {
5+
$.countdown.regional['bs'] = {
6+
labels: ['Godina', 'Mjeseci', 'Sedmica', 'Dana', 'Sati', 'Minuta', 'Sekundi'],
7+
labels1: ['Godina', 'Mjesec', 'Sedmica', 'Dan', 'Sat', 'Minuta', 'Sekunda'],
8+
labels2: ['Godine', 'Mjeseca', 'Sedmica', 'Dana', 'Sata', 'Minute', 'Sekunde'],
9+
compactLabels: ['g', 'm', 't', 'd'],
10+
whichLabels: function(amount) {
11+
return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
12+
},
13+
digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
14+
timeSeparator: ':', isRTL: false};
15+
$.countdown.setDefaults($.countdown.regional['bs']);
16+
})(jQuery);
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* http://keith-wood.name/countdown.html
2+
Catalan initialisation for the jQuery countdown extension
3+
Written by Amanida Media www.amanidamedia.com (2010) */
4+
(function($) {
5+
$.countdown.regional['ca'] = {
6+
labels: ['Anys', 'Mesos', 'Setmanes', 'Dies', 'Hores', 'Minuts', 'Segons'],
7+
labels1: ['Anys', 'Mesos', 'Setmanes', 'Dies', 'Hores', 'Minuts', 'Segons'],
8+
compactLabels: ['a', 'm', 's', 'g'],
9+
whichLabels: null,
10+
digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
11+
timeSeparator: ':', isRTL: false};
12+
$.countdown.setDefaults($.countdown.regional['ca']);
13+
})(jQuery);
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/* http://keith-wood.name/countdown.html
2+
* Czech initialisation for the jQuery countdown extension
3+
* Written by Roman Chlebec (creamd@c64.sk) (2008) */
4+
(function($) {
5+
$.countdown.regional['cs'] = {
6+
labels: ['Roků', 'Měsíců', 'Týdnů', 'Dní', 'Hodin', 'Minut', 'Sekund'],
7+
labels1: ['Rok', 'Měsíc', 'Týden', 'Den', 'Hodina', 'Minuta', 'Sekunda'],
8+
labels2: ['Roky', 'Měsíce', 'Týdny', 'Dny', 'Hodiny', 'Minuty', 'Sekundy'],
9+
compactLabels: ['r', 'm', 't', 'd'],
10+
whichLabels: function(amount) {
11+
return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
12+
},
13+
digits: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
14+
timeSeparator: ':', isRTL: false};
15+
$.countdown.setDefaults($.countdown.regional['cs']);
16+
})(jQuery);

assets/countdown/jquery.countdown-cy.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)