Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/devtools/server/tests/browser/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 3 kB image not shown  

Quelle  animation.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/devtools/server/tests/browser/animation.html


<!DOCTYPE html>
<style>
  .not-animated {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;
  }

  .simple-animation {
    display: inline-block;

    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: red;

    animation: move 200s infinite;
  }

  .multiple-animations {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eee;

    animation: move 200s infinite , glow 100s 5;
    animation-timing-function: ease-out;
    animation-direction: reverse;
    animation-fill-mode: both;
  }

  .transition {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f06;

    transition: width 500s ease-out;
  }
  .transition.get-round {
    width: 200px;
  }

  .long-animation {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: gold;

    animation: move 100s;
  }

  .short-animation {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: purple;

    animation: move 1s;
  }

  .delayed-animation {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rebeccapurple;

    animation: move 200s 5s infinite;
  }

  .delayed-transition {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: black;

    transition: width 500s 3s;
  }
  .delayed-transition.get-round {
    width: 200px;
  }

  .delayed-multiple-animations {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: green;

    animation: move .5s 1s 10, glow 1s .75s 30;
  }

  .multiple-animations-2 {
    display: inline-block;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: blue;

    animation: move .5s, glow 100s 2s infinite, grow 300s 1s 100;
  }

  .all-transitions {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: blue;
    transition: all .2s;
  }
  .all-transitions.expand {
    width: 200px;
    height: 100px;
  }

  .button-animation {
    animation: glow 5s infinite alternate;
  }

  @keyframes move {
    100% {
      transform: translateY(100px);
    }
  }

  @keyframes glow {
    100% {
      background: yellow;
    }
  }

  @keyframes grow {
    100% {
      width: 100px;
    }
  }
</style>
<div class="not-animated"></div>
<div class="simple-animation"></div>
<div class="multiple-animations"></div>
<div class="transition"></div>
<div class="long-animation"></div>
<div class="short-animation"></div>
<div class="delayed-animation"></div>
<div class="delayed-transition"></div>
<div class="delayed-multiple-animations"></div>
<div class="multiple-animations-2"></div>
<div class="all-transitions"></div>
<!-- We need this to be a button to assert fix for Bug 2001562 -->
<button class="button-animation"></button>
<script type="text/javascript">
  "use strict";
  // Get the transitions started when the page loads
  addEventListener("load", function() {
    document.querySelector(".transition").classList.add("get-round");
    document.querySelector(".delayed-transition").classList.add("get-round");
  });
</script>

Messung V0.5 in Prozent
C=96 H=81 G=88

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.