From: muchweb Date: Thu, 16 Oct 2014 22:34:03 +0000 (+0100) Subject: Form auto-submit X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=da92cc57f33489b63d1beca371baf67baeaa5799;p=simple-upload.git Form auto-submit --- diff --git a/index.php b/index.php index 93d30e5..3480189 100644 --- a/index.php +++ b/index.php @@ -14,8 +14,7 @@ along with this program. If not, see . */ - // ============== Configuration begin ============== - + // =============={ Configuration Begin }============== $settings = array( // Directory to store uploaded files @@ -52,11 +51,14 @@ debug => false, // Complete URL to your directory (including tracing slash) - url => 'http://strace.club/', + url => 'http://strace.club/' ); + // =============={ Configuration End }============== + + + - // ============== Configuration end ============== $data = array(); @@ -313,6 +315,19 @@ body > ul > li > form > button:active { opacity: 0.5; } + + body > ul > li.uploading { + animation: upanim 2s linear 0s infinite alternate; + } + + @keyframes upanim { + from { + opacity: 0.3; + } + to { + opacity: 0.8; + } + } @@ -322,7 +337,7 @@ -