I created a Splash Page here.
It is uses front-page.php (below) in a twentyeleven Child Theme, has a Page named Welcome, which is the ‘home’ page …it uses js to redirect after 10 seconds (to Welcome), provides a simple logo and a button to go right away to site:
<?php
/**
* Template Name: Splash Template
* Description: Custom Splash Page by Seacoast Web Design
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
?>
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
?></title>
<link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
<![endif]-->
<script type="text/javascript">
window.onload=timeout;
function timeout(){
window.setTimeout("redirect()",10000)}
function redirect(){
window.location="/welcome/"
return}
</script>
</head>
<body class="rye_splash" onload="timeout()">
<a href="https://rye-test.seacoastwebservice.com/welcome/">
<img class="rye_logo_splash" alt="Rye Techology Company" src="/images/rtc_splash.jpg" /></a>
<br />
<form>
<input class="rye_button" type="button" value="Go to Home Page Now" onClick="redirect()">
</form>
<div class="foot_splash_rye">
<p>Thank you for visiting <a href="https://rye-test.seacoastwebservice.com/welcome/">RYE TECHNOLOGY COMPANY</a>. We hope you found everything you wanted or were looking for!<br />If not, <a href="https://rye.seacoastwebservice.com/contact-us/">Contact Us</a>. ? 2012 RYE TECHNOLOGY COMPANY - All Rights Reserved. <a href="https://rye-test.seacoastwebservice.com/privacy">Privacy Policy</a>
<br />Site Design by <a title ="Seacoast Web Design and Service 349 Central St., Rowley, MA 01969 PH 603-583-3777" href="https://seacoastwebservice.com" target="_blank">Seacoast Web Design and Service</a>.</p>
</div>
</body>
</html>
You can grab the CSS off the site…