Sol cuadrat

De wikiserver
Dreceres ràpides: navegació, cerca
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <style type="text/css">
        div {
            width: 220px;
            height: 320px;
            border: 1px solid black;
        }
    </style>
    <script>
        contador = 0;
        divs = function crearBichos() {
            random = Math.floor(Math.random() * 5) + 1;
            for (i = 0; i < random; i++) {
                bichos = $('body').append('<div id="' + contador + '"><img src="saltamontes.jpg"></img></div>');
                contador++;
            }
        }


        $(document).ready(function () {
            setInterval(divs, 3000);

            $('4').on('click', function () {
                $(this).remove();
            });

        });
    </script>