From da92cc57f33489b63d1beca371baf67baeaa5799 Mon Sep 17 00:00:00 2001 From: muchweb Date: Thu, 16 Oct 2014 23:34:03 +0100 Subject: [PATCH] Form auto-submit --- index.php | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 79 insertions(+), 7 deletions(-) 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 @@ -