From 7f8f5dcc0a3f6b00b1aa35a496be65c3dfd6d9df Mon Sep 17 00:00:00 2001 From: opi Date: Wed, 27 May 2015 14:56:23 +0200 Subject: [PATCH] Ajout d'une animation sur la barre de progression. inutile. --- local.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/local.css b/local.css index 6cd635a..e6349f7 100644 --- a/local.css +++ b/local.css @@ -393,7 +393,17 @@ thead td { .progress-bar-wrapper .progress-bar { height: 85px; background: grey url(assets/progress_bar.png) bottom left repeat-x; + /* animate progress bar */ + -webkit-animation: progress-bar 1.5s; + -moz-animation: progress-bar 1.5s; + animation: progress-bar 1.5s; } + + /* progress bar animation*/ + @-webkit-keyframes progress-bar { 0% { width: 0; } } + @-moz-keyframes progress-bar { 0% { width: 0; } } + keyframes progress-bar { 0% { width: 0; } } + .progress-bar-wrapper:after { content: " "; display: block; -- 2.39.2