424 views
CSSAdd prefixes
1input[type="checkbox"] { 2 display: none; 3} 4 5label svg { 6 width: 44px; 7 height: 44px; 8 fill: none; 9 stroke: #000; 10 stroke-width: 2px; 11} 12 13input[type="checkbox"]:checked + label svg { 14 fill: #FFC107; 15 animation: pop_42 0.5s ease-out; 16} 17 18@keyframes pop_42 { 19 0% { 20 transform: scale(1); 21 } 22 23 50% { 24 transform: scale(1.5); 25 } 26 27 100% { 28 transform: scale(1); 29 } 30} 31
HTML
1<input type="checkbox" id="star"> 2<label for="star"> 3 <svg viewBox="0 0 24 24"> 4 <path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"></path> 5 </svg> 6</label> 7