The Google Chrome team is hitting the road. From now through October, we’re giving 21 talks about HTML5 and related Google Chrome topics at 16 events, in 16 cities and 9 countries, and on 4 continents. Phew!
Check out our schedule below. Registration for almost all these events is open, so come say hi and learn a thing or two about HTML5.
Posted by Brian Kennish, Developer Advocate
<?xml version="1.0"?><!DOCTYPE svg PUBLIC"-//W3C//DTD SVG 1.1//EN""http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path style="stroke-width:1; fill:rgb(246,127,0); stroke:none" d="M204.33 13..."/><path style="stroke-width:1; fill:rgb(0,0,0); stroke:none" d="M203.62 139.62..." /><path style="stroke-width:1; fill:rgb(255,246,227); stroke:none"d="M363.73 85.73 C359.27 86.29 355.23 86.73..."/></svg>*note: ellipses replace many more points
d = document.getElementById("c");c = d.getContext("2d");...i = 25;while (i--) {c.beginPath();...q = (R / r - 1) * t;// create hypotrochoid from current mouse position, and setup variables (see: http://en.wikipedia.org/wiki/Hypotrochoid)x = (R - r) * C(t) + D * C(q) + ...y = (R - r) * S(t) - D * S(q) + ...if (a) {// draw once two points are setc.moveTo(a, b);c.lineTo(x, y)}c.strokeStyle = "hsla(" + (U % 360) + ",100%,50%,0.75)";// draw rainbow hypotrochoidc.stroke();...} *note: ellipses replace code
/* CUBE */#transitions #cube {-webkit-transform-style: preserve-3d;width: 600px;height: 400px;position: absolute;}#transitions #cube.active {-webkit-animation-duration: 1s;-webkit-animation-iteration-count: 1;-webkit-animation-name: cubedemo;-webkit-transform: rotateX(-90deg);}#transitions #cube .face {position: absolute;width: 600px;height: 400px;display: block;overflow: hidden;}#transitions #cube .front {-webkit-transform: scale3d(.835,.835,.835) translateZ(200px);}#transitions #cube .back {-webkit-transform: scale3d(.835,.835,.835) rotateY(180deg) translateZ(200px);}#transitions #cube .top {-webkit-transform: scale3d(.835,.835,.835) rotateX(90deg) translateZ(200px);}@-webkit-keyframes cubedemo {0% {-webkit-transform: rotateX(0); -webkit-animation-timing-function: linear; }50% {-webkit-transform: rotateX(-92deg);-webkit-animation-timing-function: ease-in; }70% {-webkit-transform: rotateX(-84deg); -webkit-animation-timing-function: ease-in; }80% {-webkit-transform: rotateX(-90deg); -webkit-animation-timing-function: ease-in; }95% {-webkit-transform: rotateX(-88deg); -webkit-animation-timing-function: ease-in; }100% { -webkit-transform: rotateX(-90deg); }}