OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <meta http-equiv="X-UA-Compatible" content="IE=edge"/> |
| 3 <html> |
| 4 <head> |
| 5 <title>WebKit Mask on Text</title> |
| 6 <style> |
| 7 .foo { |
| 8 background-color: red; |
| 9 font-size: 192px; |
| 10 -webkit-mask-image: url('circle-512.gif'); |
| 11 -webkit-mask-repeat: no-repeat; |
| 12 -webkit-mask-size: 20px; |
| 13 -webkit-mask-position: 50%; |
| 14 -webkit-transition-duration: 1s; |
| 15 width: 700px; |
| 16 height: 700px; |
| 17 } |
| 18 .foo.active { |
| 19 -webkit-mask-size: 1200px; |
| 20 } |
| 21 </style> |
| 22 </head> |
| 23 <body> |
| 24 <div class="foo">ABCabc<br>DEFdef<br>GHIghi<br></div> |
| 25 <script> |
| 26 setInterval(function() { |
| 27 var f = document.body.querySelector('.foo'); |
| 28 f.classList.toggle('active'); |
| 29 }, 1200); |
| 30 </script> |
| 31 </body> |
| 32 </html> |
OLD | NEW |