Vai al contenuto

Far sparire dei cerchi

Qui si tratta di far sparire questi tre cerchi:

<!DOCTYPE html>
<html>

    <head>
        <title>Javascript</title>
        <style type="text/css">
            .circle {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                float:left;
                margin:30px;
            }
            #red-circle {
                background-color: red;
            }
            #blue-circle {
                background-color: blue;
            }
            #yellow-circle {
                background-color: yellow;
            }
        
        </style>

    </head>
    <body>
        <div class="circle" id="red-circle"></div>
        <div class="circle" id="blue-circle"></div>
        <div class="circle" id="yellow-circle"></div>
        
        <script type="text/javascript">
			document.getElementById("red-circle").onclick = function() {
                document.getElementById("red-circle").style.display = "none";
			}
            document.getElementById("blue-circle").onclick = function() {
                document.getElementById("blue-circle").style.display = "none";
			}
            document.getElementById("yellow-circle").onclick = function() {
                document.getElementById("yellow-circle").style.display = "none";
            }
		
		</script>
	</body>
</html>

Lascia un commento

Il tuo indirizzo email non sarĂ  pubblicato. I campi obbligatori sono contrassegnati *