Maison > interface Web > tutoriel CSS > le corps du texte

Comment implémenter une animation de zoom avant sur une image avec CSS

青灯夜游
Libérer: 2022-01-20 15:37:24
original
20443 Les gens l'ont consulté

Méthode : 1. Utilisez la règle "@keyframes animation name {}" et l'instruction "transform:scale (scale);" pour créer une animation de zoom avant et de zoom arrière. 2. Utilisez l'"élément d'image {animation" ; : animation name time infinite;}" instruction L'animation d'échelle est appliquée aux éléments de l'image.

Comment implémenter une animation de zoom avant sur une image avec CSS

L'environnement d'exploitation de ce tutoriel : système Windows7, version CSS3&&HTML5, ordinateur Dell G3.

En CSS, vous pouvez utiliser les attributs d'animation, les règles "@keyframes" et transform: scale() pour implémenter une animation de zoom avant sur l'image.

Exemple 1 :

<div class="ballon"></div>
Copier après la connexion
/*css部分*/
   @keyframes scaleDraw {  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
            0%{
                transform: scale(1);  /*开始为原始大小*/
            }
            25%{
                transform: scale(1.1); /*放大1.1倍*/
            }
            50%{
                transform: scale(1);
            }
            75%{
                transform: scale(1.1);
            }
        }
    .ballon{
            width: 150px;
            height: 200px;
            background: url("images/balloon.png");
            background-size: 150px 200px;
            -webkit-animation-name: scaleDraw; /*关键帧名称*/
            -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
            -webkit-animation-iteration-count: infinite;  /*动画播放的次数*/
            -webkit-animation-duration: 5s; /*动画所花费的时间*/
        }
Copier après la connexion

Les attributs ci-dessus peuvent également être écrits ensemble

animation: scaleDraw 5s ease-in-out infinite;
-webkit-animation: scaleDraw 5s ease-in-out infinite;
Copier après la connexion

Effet :

Comment implémenter une animation de zoom avant sur une image avec CSS

Exemple 2 :

 <div class="live">
         <img src="images/live.png" alt="">
         <span></span>
         <span></span>
 </div>
Copier après la connexion
.live{
           position: relative;
           width: 100px;
           height: 100px;
       }
       .live img{
           width: 100px;
           height: 100px;
           z-index: 0;
       }
        @keyframes living {
            0%{
                transform: scale(1);
                opacity: 0.5;  
            }
            50%{
                transform: scale(1.5);  
                opacity: 0;   /*圆形放大的同时,透明度逐渐减小为0*/
            }
            100%{
                transform: scale(1);
                opacity: 0.5;
            }
        }
        .live span{
            position: absolute;
            width: 100px;
            height: 100px;
            left: 0;
            bottom: 0;
            background: #fff;
            border-radius: 50%;
            -webkit-animation: living 3s linear infinite;
            z-index: -1;
        }
        .live span:nth-child(2){
            -webkit-animation-delay: 1.5s; /*第二个span动画延迟1.5秒*/
        }
Copier après la connexion

Comment implémenter une animation de zoom avant sur une image avec CSS

L'essence est d'utiliser l'attribut delay de l'animation , le les attributs liés à l'animation des deux couches de cercles sont fondamentalement les mêmes, sauf que le cercle le plus extérieur a un attribut de retard d'animation supplémentaire

(Partage vidéo d'apprentissage : Tutoriel vidéo CSS)

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal