WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Bouton J'aime
33
Viiper10
Ouvrir dans l'éditeur
Publiez votre code
Recommandé
26 June 2024
Bouton de médias sociaux multiples
9 September 2024
Bouton électrique
29 August 2024
Horloge Ui - Bouton sombre/clair
HTML
Copy
Like
Unlike
CSS
Copy
/* From Uiverse.io by Zain-Muhammad */ .like-unlike-radio { --inactive-color: #515254; --active-color: #1877f2; --hover: #515254; display: flex; align-items: center; column-gap: 24px; flex-shrink: 0; } .like-unlike-radio .custom-radio-fb { display: none; } .like-unlike-radio .feedback-label { display: flex; flex-direction: column; align-items: center; row-gap: 10px; font-size: 14px; font-weight: 600; color: var(--inactive-color); margin: 0; cursor: pointer; transition: 0.2s ease-in-out; -webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; -ms-transition: 0.2s ease-in-out; -o-transition: 0.2s ease-in-out; } .like-unlike-radio .feedback-label:hover { color: var(--hover); } .icon { transition: 0.2s ease-in-out; -webkit-transition: 0.2s ease-in-out; -moz-transition: 0.2s ease-in-out; -ms-transition: 0.2s ease-in-out; -o-transition: 0.2s ease-in-out; } .like-unlike-radio .feedback-label:hover .icon { transform: scale(1.3); } .like-unlike-radio .custom-radio-fb:checked ~ .feedback-label { color: var(--active-color); } .like-unlike-radio .custom-radio-fb:checked ~ .feedback-label svg { animation: keyframes-fill 0.2s ease-in-out; } /* ------ Animation ------ */ @keyframes keyframes-fill { 0% { transform: scale(0); opacity: 0; } 50% { transform: scale(1.2) rotate(-10deg); } }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */