Причудливая анимация Google AMP

Опубликовано: 12 Апреля, 2022

На страницах AMP HTML добавить визуальный эффект легко с помощью компонента amp-fx-collection, который предоставляет ряд наборов эффектов, таких как затухание, при котором непрозрачность фонового изображения продолжает увеличиваться до тех пор, пока не станет видимой.

Required Scripts: Importing the amp-fx-collection into the header.

HTML

<script async custom-element="amp-fx-collection" src=
</script>

Атрибуты:

  1. data-duration: указывает продолжительность анимации, которая становится статической по истечении истекшего времени.
  2. data-easing: меняет скорость анимации на протяжении всей продолжительности.
  3. d ata-margin-start / end: указывает, с какого% поля порта просмотра должна начинаться анимация.
  4. data-repeat: повторять анимацию даже после полной загрузки после прокрутки.
  5. fade-in-scroll: для изменения непрозрачности изображения при его прокрутке в окне просмотра.

Example:

HTML

<!doctype html>
<html amp>
  
<head>
    <meta charset="utf-8">
    <title>Google AMP fad-in Animation</title>
  
    <script async src=
    </script>
  
    <!-- Import `amp-fx-collection` extension -->
    <script async custom-element="amp-fx-collection" 
    </script>
  
    <link rel="canonical" href=
  
    <meta name="viewport" content=
"width=device-width,minimum-scale=1,initial-scale=1">
  
    <style amp-boilerplate>
        body {
            -webkit-animation: -amp-start 8s 
                steps(1, end) 0s 1 normal both;
  
            -moz-animation: -amp-start 8s 
                steps(1, end) 0s 1 normal both;
  
            -ms-animation: -amp-start 8s 
                steps(1, end) 0s 1 normal both;
  
            animation: -amp-start 8s 
                steps(1, end) 0s 1 normal both
        }
  
        @-webkit-keyframes -amp-start {
            from {
                visibility: hidden
            }
  
            to {
                visibility: visible
            }
        }
  
        @-moz-keyframes -amp-start {
            from {
                visibility: hidden
            }
  
            to {
                visibility: visible
            }
        }
  
        @-ms-keyframes -amp-start {
            from {
                visibility: hidden
            }
  
            to {
                visibility: visible
            }
        }
  
        @-o-keyframes -amp-start {
            from {
                visibility: hidden
            }
  
            to {
                visibility: visible
            }
        }
  
        @keyframes -amp-start {
            from {
                visibility: hidden
            }
  
            to {
                visibility: visible
            }
        }
    </style>
  
    <noscript>
        <style amp-boilerplate>
            body {
                -webkit-animation: none;
                -moz-animation: none;
                -ms-animation: none;
                animation: none
            }
        </style>
    </noscript>
  
    <style amp-custom>
        .header {
            position: relative;
            overflow: hidden;
        }
  
        .header h1 {
            color: white;
            bottom: 10%;
            left: 10px;
            position: absolute;
            z-index: 1;
            font-size: 1.7em;
        }
  
        .title {
            background-color: black;
            color: white;
        }
  
        .parallax-image-window {
            overflow: hidden;
        }
  
        .parallax-image-window amp-img {
            margin-bottom: -20%;
        }
    </style>
</head>
  
<body>
    <!--fade-in with a duration-->
    <amp-img amp-fx="fade-in" 
        data-duration="2000ms" 
        width="1280" height="873" 
        layout="responsive" src=
    </amp-img>
  
    <!-- animation starts past 50% 
        of the viewport-->
    <amp-img amp-fx="fade-in" 
        data-margin-start="50%" 
        width="1280" height="873" 
        layout="responsive" src=
    </amp-img>
  
    <!-- Scroll dependent fade-in -->
    <amp-img amp-fx="fade-in-scroll" 
        width="1600" height="900" 
        layout="responsive" src=
    </amp-img>
  
    <!--  Custom start/end points -->
    <amp-img amp-fx="fade-in-scroll" 
        data-margin-start="20%" 
        data-margin-end="80%" 
        width="1600" height="900"
        layout="responsive" src=
    </amp-img>
</body>
  
</html>

Выход:

РЕКОМЕНДУЕМЫЕ СТАТЬИ