Dino Geek essaye de t'aider

Comment animer une ombre de boîte en CSS?


Pour animer une ombre de boîte en CSS, vous pouvez utiliser @keyframes et animation. Voici un exemple:

```
/* Define an animation that changes the box-shadow property */
@keyframes boxshadowanimation { 0% {box-shadow: 10px 10px 5px #888;} 50% {box-shadow: none;} 100% {box-shadow: 10px 10px 5px #888;}
}

/* Apply the animation to a box */
.box { width: 200px; height: 200px; background-color: red; position: relative; /* This will apply the ‘boxshadowanimation’ to the ‘.box’ over a period of 4 seconds */ animation-name: boxshadowanimation; animation-duration: 4s; /* This will make the animation repeat infinitely */ animation-iteration-count: infinite;
}
```

Dans cet exemple, l’ombre de boîte va disparaître lentement et réapparaître. Assurez-vous d’ajouter des préfixes de vendeurs si vous voulez que cela fonctionne sur tous les navigateurs (par exemple, webkit, moz, etc.).

Vous pouvez aussi changer l’animation-timing-function pour changer comment l’animation s’interrompt entre les keyframes (par exemple, liner, ease, etc.)

Notez que CSS animations ne sont pas supportées dans Internet Explorer 9 et versions antérieures.


Générez simplement des articles pour optimiser votre SEO
Générez simplement des articles pour optimiser votre SEO





DinoGeek propose des articles simples sur des technologies complexes

Vous souhaitez être cité dans cet article ? Rien de plus simple, contactez-nous à dino@eiki.fr

CSS | NodeJS | DNS | DMARC | MAPI | NNTP | htaccess | PHP | HTTPS | Drupal | WEB3 | LLM | Wordpress | TLD | Nom de Domaine | IMAP | TCP | NFT | MariaDB | FTP | Zigbee | NMAP | SNMP | SEO | E-Mail | LXC | HTTP | MangoDB | SFTP | RAG | SSH | HTML | ChatGPT API | OSPF | JavaScript | Docker | OpenVZ | ChatGPT | VPS | ZIMBRA | SPF | UDP | Joomla | IPV6 | BGP | Django | Reactjs | DKIM | VMWare | RSYNC | Python | TFTP | Webdav | FAAS | Apache | IPV4 | LDAP | POP3 | SMTP

| Whispers of love (API) | Déclaration d'Amour |






Mentions Légales / Conditions Générales d'Utilisation