From 2f587484afa7ce5330d92b234784e3d5957f0c57 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 16 Nov 2005 09:45:00 +0100 Subject: loading splash screen --- config.php-dist | 4 +++- tt-rss.css | 16 ++++++++++++++++ tt-rss.js | 5 +++++ tt-rss.php | 10 ++++++++++ 4 files changed, 34 insertions(+), 1 deletion(-) diff --git a/config.php-dist b/config.php-dist index a879fddd4..b8005e1b6 100644 --- a/config.php-dist +++ b/config.php-dist @@ -64,7 +64,9 @@ define(DISPLAY_FEEDLIST_ACTIONS, false); // display actions dropbox in feedlist, if disabled these actions are // available in the global actions dropbox - + + define(ENABLE_SPLASH, true); + // enable splashscreen on loading ?> diff --git a/tt-rss.css b/tt-rss.css index 271037a90..ed5796eb5 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -503,3 +503,19 @@ div.bigErrorMsg { padding : 30px; margin : 20px; } + +#splash { + z-index : 3; + width : 100%; + height : 100%; + position : absolute; + text-align : center; + background-image : url("images/vgrad_light_rev.png"); + background-color : white; + background-position : top left; + background-repeat : repeat-x; +} + +td.innerSplash { + margin : 35px; +} diff --git a/tt-rss.js b/tt-rss.js index 13b7e50a6..d4a31bcdd 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -390,6 +390,11 @@ function init_second_stage() { setTimeout("timeout()", 2*1000); // scheduleFeedUpdate(true); + var splash = document.getElementById("splash"); + + if (splash) { + splash.style.display = "none"; + } } diff --git a/tt-rss.php b/tt-rss.php index 88dc8876e..edd4099a9 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -31,6 +31,16 @@ + +
+ +
+ logo +

Loading, please wait...

+
+
+ + -- cgit v1.2.3