page d attente
This commit is contained in:
parent
6d0d4e4c59
commit
c0cabc53ff
66
index.html
Normal file
66
index.html
Normal file
@ -0,0 +1,66 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Attente Levest</title>
|
||||
<script type="text/javascript" src="page-attente/jquery-1.11.0.min.js"></script>
|
||||
<script type="text/javascript" src="page-attente/countdown.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("#countdown .timer").countdown("2017/06/07", function(event) {
|
||||
$(this).text(
|
||||
event.strftime('%D jours %Hh %Mm %Ss')
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'DancingScript';
|
||||
src: url('page-attente/attente-fonts/DancingScriptRegular.eot');
|
||||
src: url('page-attente/attente-fonts/DancingScriptRegular.eot') format('embedded-opentype'),
|
||||
url('page-attente/attente-fonts/DancingScriptRegular.woff2') format('woff2'),
|
||||
url('page-attente/attente-fonts/DancingScriptRegular.woff') format('woff'),
|
||||
url('page-attente/attente-fonts/DancingScriptRegular.ttf') format('truetype'),
|
||||
url('page-attente/attente-fonts/DancingScriptRegular.svg#DancingScriptRegular') format('svg');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'OpenSans';
|
||||
src: url('page-attente/attente-fonts/OpenSansLight.eot');
|
||||
src: url('page-attente/attente-fonts/OpenSansLight.eot') format('embedded-opentype'),
|
||||
url('page-attente/attente-fonts/OpenSansLight.woff2') format('woff2'),
|
||||
url('page-attente/attente-fonts/OpenSansLight.woff') format('woff'),
|
||||
url('page-attente/attente-fonts/OpenSansLight.ttf') format('truetype'),
|
||||
url('page-attente/attente-fonts/OpenSansLight.svg#OpenSansLight') format('svg');
|
||||
}
|
||||
body {
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
#countdown {
|
||||
padding-top: 180px;
|
||||
font-family: 'opensans';
|
||||
font-size: 35px;
|
||||
}
|
||||
#countdown .title {
|
||||
font-family: 'DancingScript';
|
||||
font-size: 30px;
|
||||
}
|
||||
.logo {
|
||||
margin-top: 150px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<img class="logo" src="" alt="logo">
|
||||
<div id="countdown">
|
||||
<span class="title">Ouverture le 7 juin <br/> Attendez vous au meilleur !</span>
|
||||
<p class="timer"></p>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
BIN
page-attente/attente-fonts/DancingScriptRegular.eot
Normal file
BIN
page-attente/attente-fonts/DancingScriptRegular.eot
Normal file
Binary file not shown.
6976
page-attente/attente-fonts/DancingScriptRegular.svg
Normal file
6976
page-attente/attente-fonts/DancingScriptRegular.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 334 KiB |
BIN
page-attente/attente-fonts/DancingScriptRegular.ttf
Normal file
BIN
page-attente/attente-fonts/DancingScriptRegular.ttf
Normal file
Binary file not shown.
BIN
page-attente/attente-fonts/DancingScriptRegular.woff
Normal file
BIN
page-attente/attente-fonts/DancingScriptRegular.woff
Normal file
Binary file not shown.
BIN
page-attente/attente-fonts/DancingScriptRegular.woff2
Normal file
BIN
page-attente/attente-fonts/DancingScriptRegular.woff2
Normal file
Binary file not shown.
BIN
page-attente/attente-fonts/OpenSansLight.eot
Normal file
BIN
page-attente/attente-fonts/OpenSansLight.eot
Normal file
Binary file not shown.
21034
page-attente/attente-fonts/OpenSansLight.svg
Normal file
21034
page-attente/attente-fonts/OpenSansLight.svg
Normal file
File diff suppressed because it is too large
Load Diff
After Width: | Height: | Size: 1.1 MiB |
BIN
page-attente/attente-fonts/OpenSansLight.ttf
Normal file
BIN
page-attente/attente-fonts/OpenSansLight.ttf
Normal file
Binary file not shown.
BIN
page-attente/attente-fonts/OpenSansLight.woff
Normal file
BIN
page-attente/attente-fonts/OpenSansLight.woff
Normal file
Binary file not shown.
BIN
page-attente/attente-fonts/OpenSansLight.woff2
Normal file
BIN
page-attente/attente-fonts/OpenSansLight.woff2
Normal file
Binary file not shown.
22
page-attente/countdown.js
Normal file
22
page-attente/countdown.js
Normal file
@ -0,0 +1,22 @@
|
||||
/*!
|
||||
* The Final Countdown for jQuery v2.1.0 (http://hilios.github.io/jQuery.countdown/)
|
||||
* Copyright (c) 2015 Edson Hilios
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
* this software and associated documentation files (the "Software"), to deal in
|
||||
* the Software without restriction, including without limitation the rights to
|
||||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
* the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
* subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
!function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):a(jQuery)}(function(a){"use strict";function b(a){if(a instanceof Date)return a;if(String(a).match(g))return String(a).match(/^[0-9]*$/)&&(a=Number(a)),String(a).match(/\-/)&&(a=String(a).replace(/\-/g,"/")),new Date(a);throw new Error("Couldn't cast `"+a+"` to a date object.")}function c(a){var b=a.toString().replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1");return new RegExp(b)}function d(a){return function(b){var d=b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi);if(d)for(var f=0,g=d.length;g>f;++f){var h=d[f].match(/%(-|!)?([a-zA-Z]{1})(:[^;]+;)?/),j=c(h[0]),k=h[1]||"",l=h[3]||"",m=null;h=h[2],i.hasOwnProperty(h)&&(m=i[h],m=Number(a[m])),null!==m&&("!"===k&&(m=e(l,m)),""===k&&10>m&&(m="0"+m.toString()),b=b.replace(j,m.toString()))}return b=b.replace(/%%/,"%")}}function e(a,b){var c="s",d="";return a&&(a=a.replace(/(:|;|\s)/gi,"").split(/\,/),1===a.length?c=a[0]:(d=a[0],c=a[1])),1===Math.abs(b)?d:c}var f=[],g=[],h={precision:100,elapse:!1};g.push(/^[0-9]*$/.source),g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source),g=new RegExp(g.join("|"));var i={Y:"years",m:"months",n:"daysToMonth",w:"weeks",d:"daysToWeek",D:"totalDays",H:"hours",M:"minutes",S:"seconds"},j=function(b,c,d){this.el=b,this.$el=a(b),this.interval=null,this.offset={},this.options=a.extend({},h),this.instanceNumber=f.length,f.push(this),this.$el.data("countdown-instance",this.instanceNumber),d&&("function"==typeof d?(this.$el.on("update.countdown",d),this.$el.on("stoped.countdown",d),this.$el.on("finish.countdown",d)):this.options=a.extend({},h,d)),this.setFinalDate(c),this.start()};a.extend(j.prototype,{start:function(){null!==this.interval&&clearInterval(this.interval);var a=this;this.update(),this.interval=setInterval(function(){a.update.call(a)},this.options.precision)},stop:function(){clearInterval(this.interval),this.interval=null,this.dispatchEvent("stoped")},toggle:function(){this.interval?this.stop():this.start()},pause:function(){this.stop()},resume:function(){this.start()},remove:function(){this.stop.call(this),f[this.instanceNumber]=null,delete this.$el.data().countdownInstance},setFinalDate:function(a){this.finalDate=b(a)},update:function(){if(0===this.$el.closest("html").length)return void this.remove();var b,c=void 0!==a._data(this.el,"events"),d=new Date;b=this.finalDate.getTime()-d.getTime(),b=Math.ceil(b/1e3),b=!this.options.elapse&&0>b?0:Math.abs(b),this.totalSecsLeft!==b&&c&&(this.totalSecsLeft=b,this.elapsed=d>=this.finalDate,this.offset={seconds:this.totalSecsLeft%60,minutes:Math.floor(this.totalSecsLeft/60)%60,hours:Math.floor(this.totalSecsLeft/60/60)%24,days:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToWeek:Math.floor(this.totalSecsLeft/60/60/24)%7,daysToMonth:Math.floor(this.totalSecsLeft/60/60/24%30.4368),totalDays:Math.floor(this.totalSecsLeft/60/60/24),weeks:Math.floor(this.totalSecsLeft/60/60/24/7),months:Math.floor(this.totalSecsLeft/60/60/24/30.4368),years:Math.abs(this.finalDate.getFullYear()-d.getFullYear())},this.options.elapse||0!==this.totalSecsLeft?this.dispatchEvent("update"):(this.stop(),this.dispatchEvent("finish")))},dispatchEvent:function(b){var c=a.Event(b+".countdown");c.finalDate=this.finalDate,c.elapsed=this.elapsed,c.offset=a.extend({},this.offset),c.strftime=d(this.offset),this.$el.trigger(c)}}),a.fn.countdown=function(){var b=Array.prototype.slice.call(arguments,0);return this.each(function(){var c=a(this).data("countdown-instance");if(void 0!==c){var d=f[c],e=b[0];j.prototype.hasOwnProperty(e)?d[e].apply(d,b.slice(1)):null===String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i)?(d.setFinalDate.call(d,e),d.start()):a.error("Method %s does not exist on jQuery.countdown".replace(/\%s/gi,e))}else new j(this,b[0],b[1])})}});
|
4
page-attente/jquery-1.11.0.min.js
vendored
Normal file
4
page-attente/jquery-1.11.0.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
page-attente/logo.png
Normal file
BIN
page-attente/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
Loading…
Reference in New Issue
Block a user