Katamari Hack 网页吸附器游戏

Katamari Hack 网页吸附器吸尘器游戏


20160910225507.jpg




Katamari Hack

Drag this link to your bookmarks bar: Katamari!

Or copy and paste this url into the location bar on any site:

(works best in chrome or firefox 4)

点击演示!

What is this?

This is a "bookmarklet" that turns any page into Katamari Damacy. Try clicking the Katamari! link above.

This was the winner of the 2011 Yahoo HackU contest at University of Washington.

How does it work?

Short version: css transforms (for things stuck to the katamari), canvas (drawing the katamari), and z-index (illusion of depth).

Long version: The bookmarklet loads jQuery and kh.js into the current page. jQuery is used mostly for .offset() and .css().  kh.js is where all the action happens:

  • Splits all the text on the page into words/spans. (StickyNodes::addWords)

  • Builds a grid data structure so that intersections with elements can be found quickly (StickyNodes::finalize). Essentially grid[floor(x / 100)][floor(y / 100)] is a list of elements in a 100x100 pixel block. This should probably be an R-tree, but the hot-spot in this program is definitely in the rendering.

  • The ball and stripes are drawn in a canvas that gets moved around the page (i.e.position: absolute; left: x; top: y;). See PlayerBall::drawBall.

  • When an element is attached to the katamari, a clone is made. The original element is hidden. The new element is moved around by setting -webkit-transform. The transform rotates the element about the rolling axis of the katamari and scales the element to make it look like it's coming out of the page. SeePlayerBall::drawAttachedtransform_test.html, and transform_test2.html.


相关文章:

无聊了?来试试任意摧毁破坏HTML内容的小游戏吧!

未经允许请勿转载:程序喵 » Katamari Hack 网页吸附器游戏

点  赞 (5) 打  赏
分享到: