Last active
January 26, 2018 11:40
-
-
Save XmlmXmlmX/93ddb1ad2fbb06b430784cc57a049ae2 to your computer and use it in GitHub Desktop.
Simple Tooltips Orientation Examples
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
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="nw">North-West</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="n">North</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="ne">North East</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="wn">West North</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="en">East North</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="w">West</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="e">East</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="ws">West South</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="es">East South</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="sw">South West</button> | |
<button role="tooltip" data-stt aria-label="Hello World!">South (Default)</button> | |
<button role="tooltip" data-stt aria-label="Hello World!" data-stt-orientation="se">South East</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment