Mouseover to see flights originating at the specified airport. The cool thing about this technique is that the interaction requires zero JavaScript — it’s all done in CSS using the :hover state to toggle visibility of an airport’s associated outgoing flight routes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> | |
<HTML> | |
<HEAD> | |
<TITLE>JavaScript Non-Form CurseMonger</TITLE> | |
<META NAME="GENERATOR" CONTENT="Mozilla/3.01Gold (Win95; I) [Netscape]"> | |
<SCRIPT LANGUAGE="JavaScript"> | |
<!--Hide JavaScript from Java-Impaired Browsers | |
isn1="*00Your mouth spews*01You are*02Your mother wears*03Your" | |
+" Father is*04Your Eleventh Child will be*05Your Mate" | |
+"rnal Ancestors are*06Your Personal Trainer is*07Your spouse " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns | |
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd"> | |
<key id="x" for="node" attr.name="x" attr.type="double"/> | |
<key id="tooltip" for="node" attr.name="tooltip" attr.type="string"/> | |
<key id="y" for="node" attr.name="y" attr.type="double"/> |