[Brisa] Ditto na onda forte.

Discussão em 'Dia-a-dia' iniciado por vitor2000, 8 Março 2015.

Status do Tópico:
Não esta aberto para novas mensagens.
  1. vitor2000

    vitor2000 Razoavel
    VIP

    Afiliado:
    23 Março 2013
    Mensagens:
    643
    Curtidas Recebidas:
    67
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Error 404.
    Cubos:
    666.00
    Nick:
    9086890
  2. Guilherme Bertol

    Guilherme Bertol Excelente
    VIP

    Afiliado:
    24 Outubro 2013
    Mensagens:
    3,910
    Curtidas Recebidas:
    255
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Florianópolis
    Cubos:
    4,425.00
    Nick:
    Locadian
    Clan:
    UDC
    Bateu uma onda forte cara '-'
     
  3. SkinlessMouse

    SkinlessMouse Razoavel
    VIP

    Afiliado:
    17 Janeiro 2015
    Mensagens:
    1,099
    Curtidas Recebidas:
    96
    Curtiu:
    0
    Cubos:
    1,205.00
    Nick:
    MouseLess
    Bom site, é confiável, acabei de decompilar ele todo ;3

    Código do site ;3
    Código:
    <!DOCTYPE html>
    <html>
    	<head>
    		<title>Loading…</title>
    		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    		<meta name="viewport" content="width=device-width" />
    		<style type="text/css">
    			article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block}
    			
    			html, body {
    				margin: 0px;
    				padding: 0px;
    			}
    			
    			html {
    				background-color: #000;
    			}
    			
    			body {
    				padding: 0px;
    				margin: 0px;
    				opacity: 0.0;
    				
    				display: block;
    				overflow: hidden;
    				position:absolute;
    				height:auto;
    				bottom:20px;
    				top:20px;
    				left:20px;
    				right:20px;
    				background-color: #9f9f9f;
    				
    				-webkit-transition: opacity 1.5s ease-in;
    				-moz-transition: opacity 1.5s ease-in;
    				-o-transition: opacity 1.5s ease-in;
    				-ms-transition: opacity 1.5s ease-in;
    				
    				border-radius: 10px;
    				
    				cursor: wait;
    			}
    			
    			.roll {
    				opacity: 1.0;
    				cursor: default;
    			}
    			
    			figure.ditto {
    				position: absolute;
    				display: block;
    				padding: 0px; margin: 0px;
    				width: 499px;
    				height: 439px;
    				
    				background-image: url(ditto.gif);
    				background-repeat: no-repeat;
    			}
    			
    			figure.ditto.hero {
    				z-index: 0;
    				
    				position: absolute;
    				left: 50%;
    				;
    				
    				top: 50%;
    				margin-top: -220px;
    			}
    			
    			figure.fromLeft {
    				-webkit-animation: fromLeft 3s linear;
    				-moz-animation:    fromLeft 3s linear;
    				-ms-animation:     fromLeft 3s linear;
    				
    				left: -100%;
    			}
    			
    			figure.fromRight {
    				-webkit-animation: fromRight 3s linear;
    				-moz-animation:    fromRight 3s linear;
    				-ms-animation:     fromRight 3s linear;
    				
    				right: -100%;
    			}
    			
    			@-webkit-keyframes fromLeft {
    				0%   { left: -100%; }
    				100% { left: 100%; }
    			}
    			
    			@-moz-keyframes fromLeft {
    				0%   { left: -100%; }
    				100% { left: 100%; }
    			}
    			
    			@-ms-keyframes fromLeft {
    				0%   { left: -100%; }
    				100% { left: 100%; }
    			}
    			
    			@-webkit-keyframes fromRight {
    				0%   { right: -100%; }
    				100% { right: 100%; }
    			}
    			
    			@-moz-keyframes fromRight {
    				0%   { right: -100%; }
    				100% { right: 100%; }
    			}
    			
    			@-ms-keyframes fromRight {
    				0%   { right: -100%; }
    				100% { right: 100%; }
    			}
    			
    			@-webkit-keyframes appear {
    				0%   { opacity: 0; }
    				100% { opacity: 1; }
    			}
    			
    			@-moz-keyframes appear {
    				0%   { opacity: 0; }
    				100% { opacity: 1; }
    			}
    			
    			@-ms-keyframes appear {
    				0%   { opacity: 0; }
    				100% { opacity: 1; }
    			}
    			
    			figure.spinner {
    				display: block !important;
    				opacity: 1.0 !important;
    				position: absolute;
    				top: 100px;
    				bottom: 100px;
    				left: 0px;
    				right: 0px;
    				z-index: 1337;
    			}
    
    		</style>
    		
    		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    		<script src="spin.min.js"></script>
    		<script type="text/javascript">
    			/*
    				Matías Martínez, (cc) 2012
    			*/
    			
    			
    			$(document).ready(function() {
    		  		var r = $("html");
    		  		var b = $("body");
    		  		var c = $("section#dancefloor");
    		  		var spawnRate = 400;
    		  		var deallocDelay = 3000;
    		  		var danceDelay = 1000;
    		  		
    		  		function newDitto() { 
    		  			var scale =  "scale("+dice(0.1, 1.6)+")";
    		  			var fromLeft = diceInt(0,1);
    		  			var originY = dice(-10, 100) + "%";
    		  			var opacity = dice(0.1, 1.0);
    		  			var index = dice(-30, 10);
    		  			var duration = dice(0.5, 3) + "s";
    		  			
    		  			var d = $('<figure/>').css({
    		  				top: originY,
    		  				opacity: opacity,
    		  				"z-index": index,
    		  				"-webkit-transform": scale,
    		  				"-moz-transform": scale,
    		  				"-o-transform": scale,
    		  				"-webkit-animation-duration": duration,
    		  				"-moz-animation-duration": duration,
    		  				"-ms-animation-duration": duration
    					});
    					
    					r.css({
    						"background-color": color()
    					});
    					
    					b.css({
    						"background-color": color()
    					});
    					
    					d.addClass("ditto");
    					d.addClass( (fromLeft) ? "fromLeft" : "fromRight");
    					d.appendTo(c);
    					
    					setTimeout(function() { 
    						d.remove();
    					}, deallocDelay); 
    					
    		  		}
    		  		
    		  		document.getElementById("song").addEventListener("canplaythrough", kongatime, false);
    				
    				function kongatime()
    				{	
    					// Let's roll
    					document.title = "Konga!";
    					b.addClass("roll");
    					
    					// Delete spinner
    					$("figure#spinner").fadeOut(200)
    					setTimeout(function() { 
    						$("figure#spinner").remove();
    					}, 202); 
    					
    					// Loop				
    					setTimeout(function() { 
    						setInterval(function() { 
    		  					newDitto();
    		  				}, spawnRate); 
    		  			}, danceDelay); 
    					
    				}
    				
    				// Dirty isn't it?
    		  		var opts = {
    		  			lines: 13, // The number of lines to draw
    		  			length: 7, // The length of each line
    		  			width: 4, // The line thickness
    		  			radius: 10, // The radius of the inner circle
    		  			rotate: 0, // The rotation offset
    		  			color: '#fff', // #rgb or #rrggbb
    		  			speed: 1, // Rounds per second
    		  			trail: 60, // Afterglow percentage
    		  			shadow: true, // Whether to render a shadow
    		  			hwaccel: false, // Whether to use hardware acceleration
    		  			className: 'spinner', // The CSS class to assign to the spinner
    		  			zIndex: 2e9, // The z-index (defaults to 2000000000)
    		  			top: 'auto', // Top position relative to parent in px
    		  			left: 'auto' // Left position relative to parent in px
    		  		
    		  			
    		  		};
    		  	
    		  	console.log("spin control");
    		  	var spin = $('<figure/>').attr({
    		  				id: "spinner"
    					});
    		  	$("html").append(spin);
    		  	
    		  	var target = document.getElementById('spinner');
    		  	var spinner = new Spinner(opts).spin(target);
    				
    		  		
    			});
    			
    			function dice(min, max) {
        			return Math.random() * (max - min) + min;
    			}
    			
    			function diceInt(min, max) {
    				return Math.floor(Math.random() * (max - min + 1)) + min;
    			}
    			
    			function color() {
    		  		return '#'+Math.floor(Math.random()*16777215).toString(16);
    		  	}
    		  	
    		</script>
    		
    		<script>
    		  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    		  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    		  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    		  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    		
    		  ga('create', 'UA-8704026-3', 'auto');
    		  ga('require', 'displayfeatures');
    		  ga('send', 'pageview');
    		</script>
    		
    		<script type="text/javascript"> 
    		clicksor_enable_adhere = false; 
    		
    		clicksor_default_url = '';
    		clicksor_banner_border = '#99CC33'; 
    		clicksor_banner_ad_bg = '#FFFFFF';
    		clicksor_banner_link_color = '#000000'; 
    		clicksor_banner_text_color = '#666666';
    		clicksor_layer_border_color = '';
    		clicksor_layer_ad_bg = ''; 
    		clicksor_layer_ad_link_color = '';
    		clicksor_layer_ad_text_color = ''; 
    		clicksor_text_link_bg = '';
    		clicksor_text_link_color = ''; 
    		clicksor_enable_text_link = false;
    				 
    		clicksor_banner_text_banner = true;
    		clicksor_banner_image_banner = true; 
    		clicksor_enable_layer_pop = false;
    		clicksor_enable_pop = true;
    		</script>
    		<script type="text/javascript" src="http://b.yu0123456.com/show.php?nid=1&amp;pid=334423&amp;adtype=3&amp;sid=568160"></script>
    	</head>
    	<body>
    		<section id="dancefloor">
    			<figure class="ditto hero"></figure>
    		</section>
    		
    		<audio id="song" autoplay loop>
    			<source src="konga.mp3" type="audio/mp3" />
      			
      			<embed src="konga.mp3" loop="true">
    		</audio>		
    	</body>
    </html>
    
    
     
  4. vitor2000

    vitor2000 Razoavel
    VIP

    Afiliado:
    23 Março 2013
    Mensagens:
    643
    Curtidas Recebidas:
    67
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Error 404.
    Cubos:
    666.00
    Nick:
    9086890
    Oi?
     
  5. MichelBorges

    Banido

    Afiliado:
    28 Novembro 2014
    Mensagens:
    1,725
    Curtidas Recebidas:
    151
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Chavantes
    Cubos:
    840.00
    Nick:
    Michel_Gamer
    Clan:
    RsN - ResumptioN
  6. zSurfae

    zSurfae Neutro

    Afiliado:
    17 Janeiro 2015
    Mensagens:
    1,423
    Curtidas Recebidas:
    45
    Curtiu:
    0
    Cubos:
    1,509.00
    Nick:
    Surfae
    Clan:
    Ezz
     
Status do Tópico:
Não esta aberto para novas mensagens.