• Salut Visiteur ! ✌
    Découvre nos partenaires officiels avec VeryLeak's. Des choix réfléchis, dignes de confiance pour tes avantages.

    StoryFound | REFUNDER TEAM

    StoryFound

    Rejoindre le Canal ✨ ou Plus d'information 📃

    Une question ? Rejoingnez nos différents canaux (Discord, Telegram, Revolt)

    Nos Canaux Communautaires

    Cet affichage peut se clôturer définitivement via la croix en haut à droite.

XenForo 1.X Effet logo CSS3

Sacryp

VeryLeak's Unique Member 👑
Level 2

Torrents Stats

Messages
321
J'aime
40
Trophées
615
Inscrit
27 Novembre 2015
Yop :)

Voici comment faire un petit effet sympas sur vos logos ou autres.

Template: EXTRA.css

Copier coller a la suite
Code:
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes redPulse {
from { background-color: #e68c17; -webkit-box-shadow: 0 0 9px #333; }
          50% { background-color: #000000; -webkit-box-shadow: 0 0 18px #000000; }
          to { background-color: #e68c17; -webkit-box-shadow: 0 0 9px #333; }
        }
@-moz-keyframes redPulse {
from { background-color: #e68c17; -moz-box-shadow: 0 0 9px #333; }
          50% { background-color: #000000; -moz-box-shadow: 0 0 18px #000000; }
          to { background-color: #e68c17; -moz-box-shadow: 0 0 9px #333; }
        }
@-o-keyframes redPulse {
from { background-color: #e68c17; -o-box-shadow: 0 0 9px #333; }
          50% { background-color: #000000; -o-box-shadow: 0 0 18px #000000; }
          to { background-color: #e68c17; -o-box-shadow: 0 0 9px #333; }
        }
@keyframes redPulse {
from { background-color: #e68c17; box-shadow: 0 0 9px #333; }
          50% { background-color: #000000; box-shadow: 0 0 18px #000000; }
          to { background-color: #e68c17; box-shadow: 0 0 9px #333; }
        }
Template: logo_block
Chercher:
Code:
<div id="logo"><a href="{$logoLink}">
Remplacer par:
Code:
<div id="logo" class="animated bounceInRight"><a href="{$logoLink}">
Résultat:
L'image défilera depuis la droite jusqu’à la position initiale du logo.
61ec91c62d1aa7e378b046cb63b1a665.png

91ff1cdb56dd463043dc0172892af488.png


crédits: msx82
 
Haut Bas