1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| #moc-20 { position: relative; width: 400px; height: 300px; margin: 20px auto; overflow: hidden; background-color: black; }
#moc-20:before, #moc-20:after { content: " "; position: absolute; top: -20px; bottom: -20px; width: 60%;
background-color: red; background-size: 20%; background-repeat: repeat;
box-shadow: inset 0 80px 40px -20px rgba(0, 0, 0, 0.5);
-webkit-transition: all 2s cubic-bezier(.48,.14,.28,1.56); -moz-transition: all 2s cubic-bezier(.48,.14,.28,1.56); -ms-transition: all 2s cubic-bezier(.48,.14,.28,1.56); transition: all 2s cubic-bezier(.48,.14,.28,1.56); }
#moc-20:before { left: -20px; background-image: linear-gradient( -90deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 70% ); }
#moc-20:after { right: -20px; background-image: linear-gradient( 90deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 70% ); }
#moc-20:hover:before, #moc-20:hover:after { width: 5%; -webkit-transition: all 2s cubic-bezier(.48,.14,.45,1.28); -moz-transition: all 2s cubic-bezier(.48,.14,.45,1.28); -ms-transition: all 2s cubic-bezier(.48,.14,.45,1.28); transition: all 2s cubic-bezier(.48,.14,.45,1.28);
}
#moc-20:hover:before { -webkit-transform: rotate(5deg); -moz-transform: rotate(5deg); -ms-transform: rotate(5deg); transform: rotate(5deg); } #moc-20:hover:after { -webkit-transform: rotate(-5deg); -moz-transform: rotate(-5deg); -ms-transform: rotate(-5deg); transform: rotate(-5deg); }
|