зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
335 B
HTML
12 строки
335 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script>
|
|
window.onload=function(){
|
|
var a = document.createElement("div");
|
|
document.documentElement.appendChild(a);
|
|
a.animate([{background: "-webkit-gradient(radial, 1 2, 8, 3 4, 9, from(lime))"},
|
|
{background: "-webkit-gradient(radial, 0e309 2, 8, 3 4, 9, from(lime))"}]);
|
|
};
|
|
</script>
|
|
</html>
|