Najnowsze tutoriale tworzenie stron internetowych
 

JavaScript HTML DOM Animacja


Dowiedz się, jak tworzyć animacje HTML za pomocą JavaScript.


Podstawowej strony internetowej

Aby zademonstrować, jak tworzyć animacje HTML z JavaScript użyjemy prostą stronę internetową:

Przykład

<!DOCTYPE html>
<html>
<body>

<h1>My First JavaScript Animation</h1>

<div id="animation">My animation will go here</div>

</body>
</html>
Spróbuj sam "

Tworzenie animacji pojemniku

Wszystkie animacje powinna być w odniesieniu do elementu pojemnika.

Przykład

<div id ="container">
    <div id ="animate">My animation will go here</div>
</div>

Style Elements

Element pojemnika powinny być tworzone z style = "position: relative".

Element animacja powinny być tworzone z style = "position: absolute".

Przykład

#container {
    width: 400px;
    height: 400px;
    position: relative;
    background: yellow;
}
#animate {
    width: 50px;
    height: 50px;
    position: absolute;
    background: red;
}
Spróbuj sam "

Kod Animacja

animacje JavaScript są wykonywane przez zaprogramowanie stopniowych zmian w stylu elementu.

Zmiany te są nazywane przez timer. Kiedy układ czasowy jest mała, animacja wygląda w sposób ciągły.

Kod podstawowym jest:

Przykład

var id = setInterval(frame, 5);

function frame() {
    if (/* test for finished */) {
        clearInterval(id);
    } else {
        /* code to change the element style */ 
    }
}

Tworzenie animacji przy użyciu JavaScript

Przykład

function myMove() {
    var elem = document.getElementById("animate");
    var pos = 0;
    var id = setInterval(frame, 5);
    function frame() {
        if (pos == 350) {
            clearInterval(id);
        } else {
            pos++;
            elem.style.top = pos + 'px';
            elem.style.left = pos + 'px';
        }
    }
}
Spróbuj sam "