web/transition.html
author veltr
Fri, 04 Jan 2013 18:13:55 +0100
changeset 66 331e70527d74
parent 48 d92196482ad9
child 78 8c3f0b94d056
permissions -rw-r--r--
Set version to 1.13

<!DOCTYPE html>
<html lang="fr">
	<head>
		<meta charset="utf-8">
		<title>The End - @todo</title>
		
		<meta name="description" content="@todo">
		
		<!-- Mobile Specific Metas -->
		<meta name="viewport" content="initial-scale=1.0, width=device-width" />
		
		<link rel="stylesheet" href="static/res/css/style_1024.css" /> 
		<!-- stylesheet for ipad 3 
		<link rel="stylesheet" href="static/res/css/style_2048.css" /> 
		-->
		
	</head>
	<body>
		<!-- div content - site takes the full height of browser -->			
		<div id="content" class="full_screen">
			
			<!--opacity -->
			<div id="theEnd" class="box_transparance">
				<!--this div empty allows the element content_vcentering to be vertically aligned -->
				<div class="strut"></div><!--
				this comment corrects the white-space (display: inline);
				--><h1>THE END, ETC.</h1>
			</div>
			
			<!--this div empty allows the element content_vcentering to be vertically aligned -->
			<div class="strut"></div><!--
			this comment corrects the white-space (display: inline);
			--><section id="bg_img" class="fullScreen_vcentering">
		    	<img id="bgimage" alt="The End, etc." src="" />
			</section>	
			<section id="partage" class="container_vcentering">
				<!--this div empty allows the element content_vcentering to be vertically aligned -->
				<div class="strut"></div><!--
				this comment corrects the white-space (display: inline);
				--><div class="fullScreen_vcentering box_vcentering white big_txt">
					<p><a href="partage.html">Partagez</a></p>
					<p><a href="choix.html">Recommencez</a></p>
					<p class="margin_exeption"><a href="niv2_hp.html">Prolongez l'expérience</a></p>
					<p><a href="/">Crédits</a></p>
					<p><a href="/">The End, etc.</a></p>
				</div>
			</section>
		</div>

		<!-- Metanav FranceTV 	-->
		<script src="http://static.francetv.fr/js/jquery.metanav-min.js" charset="utf-8"></script>
		<!-- JavaScript -->
        <script src="static/res/js/jquery-1.8.2.min.js"></script>        		
        <script>
        	var r = Math.floor(Math.random()*3);
        	if (r == 0) {        		
				$("#bgimage").attr("src", "static/res/img/transitionChoix1.jpg");
        	} else if (r == 1) {        		
				$("#bgimage").attr("src", "static/res/img/transitionChoix2.jpg");
        	} else {
				$("#bgimage").attr("src", "static/res/img/transitionChoix3.jpg");
        	}

            $(function() {
				setTimeout(function() {

					$('.box_transparance').animate({
						opacity: 0,
					  }, 3000, function() { 
					  				$("#theEnd").addClass("display");
					  			});

				}, 4000);            	
            });
        </script>						
	
	</body>
</html>