Prototyping 26 November 2012: Difference between revisions
(Created page with "Chromess Youtube & onStateChange (doing something when the clip is over) * https://developers.google.com/youtube/youtube_player_demo * http://www.w3.org/TR/SVG/linking.html#L...") |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 40: | Line 40: | ||
</html> | </html> | ||
</source> | </source> | ||
[[Graphviz]] | |||
[[OpenLayers]] | |||
[[GreaseMonkey]] |
Latest revision as of 12:19, 27 November 2012
Chromess Youtube & onStateChange (doing something when the clip is over)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<p>Hello <a href="http://cnn.com/">world</a>!</p>
<svg width="12cm" height="4cm" viewBox="0 0 1200 400"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<desc>Example polygon01 - star and hexagon</desc>
<!-- Show outline of canvas using 'rect' element -->
<rect x="1" y="1" width="1198" height="398"
fill="none" stroke="blue" stroke-width="2" />
<a xlink:href="http://cnn.com"><polygon fill="red" stroke="blue" stroke-width="10"
points="350,75 379,161 469,161 397,215
423,301 350,250 277,301 303,215
231,161 321,161" /></a>
<polygon fill="lime" stroke="blue" stroke-width="10"
points="850,75 958,137.5 958,262.5
850,325 742,262.6 742,137.5" />
</svg>
<p>
<blink>Goodbye</blink>
</p>
</body>
</html>