summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authordumpfmprod <dumpfmprod@ubuntu.(none)>2010-04-28 00:15:33 -0400
committerdumpfmprod <dumpfmprod@ubuntu.(none)>2010-04-28 00:15:33 -0400
commit584915623ffd93ea86ae6957018b2e8c4f9af9dd (patch)
treea3e0b4946cf71683b50b9adcd3d6faf799339cad /static
parent052e9ed65d2838b8fc89a8c9ac3a1c2eb423a35e (diff)
sostler prod commit
Diffstat (limited to 'static')
-rw-r--r--static/rainbow.xhtml29
1 files changed, 29 insertions, 0 deletions
diff --git a/static/rainbow.xhtml b/static/rainbow.xhtml
new file mode 100644
index 0000000..0ce2c6b
--- /dev/null
+++ b/static/rainbow.xhtml
@@ -0,0 +1,29 @@
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:svg="http://www.w3.org/2000/svg">
+<head>
+ <style>
+ iframe { width:100%; height:100%; border:none; position:absolute; }
+ body { padding:0; margin:0; overflow: hidden; }
+ iframe.target { filter:url(#sat); }
+ </style>
+</head>
+<body>
+<iframe class="target" src="http://dump.fm/chat" border="0" padding="0" spacing="0" width="100%" height="100%" />
+ <svg:svg height="0">
+ <svg:filter id="sat">
+ <svg:feColorMatrix type="hueRotate" id="rotater" values="0"/>
+ </svg:filter>
+ </svg:svg>
+ <script>
+ var rotater = document.getElementById("rotater")
+ function go(){
+ var degree = parseInt(rotater.getAttribute("values"))
+ degree = (degree + 10 ) % 360
+ rotater.setAttribute("values", degree)
+ //.getAttribute("values")
+ setTimeout(go, 100)
+ }
+ go()
+ </script>
+</body>
+</html>