Incidentally, this was what my diploma thesis was about. The basic idea was to have a single »text« that contains lots of possible branching or expansion points, depending on certain criteria. Depending on those criteria you'd get a expanded or contracted text to read that would be tailored to what you already know or are interested about. Altering the text in small parts (like [−1½] mentioned in another comment – I…
Telescope Text is very interesting, thanks for the link.
I wish I could read Wikipedia like this
41–50 of 68 posts
Re: I wish I could read Wikipedia like this
#42Sadly, Chrome doesn't have a tree-style tabs mode, nor can it be provided by the existing Chrome extension format. There are a number of tree-style tab extensions for Firefox (e.g., "Tree Style Tab": http://piro.sakura.ne.jp/xul/_treestyletab.html.en).
There are any of a number of changes to the browser model I'd very much prefer aimed at information management, as opposed to the web-applications centric focus of the past several years.
In an interesting departure, Kobo advertised among the features of its (Android-based) tablet a web browser which simplified pages to an easy-to-read view. Based on present pre-loaded apps bundles, it looks as if that was the Pocket browser, but I still find it interesting that this was pitched as a benefit to a largely nontechnical, literary audience. It certainly reflects my own growing dissatisfaction with present-generation browsers.
Re: I wish I could read Wikipedia like this
#43https://chrome.google.com/webstore/detail/wikipedia-quick-hi...
Re: I wish I could read Wikipedia like this
#44Rob Beezer's free open-source linear algebra book uses these extensively to provide more details in proofs and in exposition. It's very nice. For example, click on the underlined blue text at http://linear.ups.edu/html/section-SSLE.html
Re: I wish I could read Wikipedia like this
#45This already exists on Wikipedia. Under preferences, select the Gadgets tab and enable "Navigation popups". When hovering over a link in a Wikipedia article, a small popup will appear, in addition to some metadata about the link, the first paragraph of the article will appear, including links that may appear in that paragraph, which can also be hovered to make another popup appear.
The OP's design for it is much nicer. Navigation popups have been around since 2005, and while in some ways better than the OP's design (pictures!) this is useful enough to test it as default behavior. Hover doesn't work on mobile, so perhaps they should appear if you click and hold for a few seconds.
Re: I wish I could read Wikipedia like this
#46http://xuanji.appspot.com/static/wikipedia.html
Note that the "sinusoidal wave" link isn't working, as it redirects to "sine wave"...gotta work around that :(
If you want to read/modify the code send a pull request to github.com/zodiac/xuanji.appspot.com/, the commit which implemented this is https://github.com/zodiac/xuanji.appspot.com/commit/872b40dc...
Re: I wish I could read Wikipedia like this
#47If I want a short article, read the Dutch version. If I want too many details, read the English version :)
Re: I wish I could read Wikipedia like this
#48Earlier quoted context omitted.
The OP's design for it is much nicer. Navigation popups have been around since 2005, and while in some ways better than the OP's design (pictures!) this is useful enough to test it as default behavior. Hover doesn't work on mobile, so perhaps they should appear if you click and hold for a few seconds.
Implementing it in HTML/CSS/JS certainly poses an interesting problem because, as far as I know, one cannot directly access individual, dynamically broken lines of text. One would probably have to wrap each word in a container and keep track of the absolute positions.
(just with divs instead of images)
It's very brittle though. It relies on knowing the line-height, calculating the line in which the highlighted word sits, accounting for the existence of vertical scroll-bars... not trivial.
Re: I wish I could read Wikipedia like this
#49Earlier quoted context omitted.
The OP's design for it is much nicer. Navigation popups have been around since 2005, and while in some ways better than the OP's design (pictures!) this is useful enough to test it as default behavior. Hover doesn't work on mobile, so perhaps they should appear if you click and hold for a few seconds.
Implementing it in HTML/CSS/JS certainly poses an interesting problem because, as far as I know, one cannot directly access individual, dynamically broken lines of text. One would probably have to wrap each word in a container and keep track of the absolute positions.
[0] https://stackoverflow.com/questions/7563169/detect-which-wor...
Re: I wish I could read Wikipedia like this
#50Earlier quoted context omitted.
Implementing it in HTML/CSS/JS certainly poses an interesting problem because, as far as I know, one cannot directly access individual, dynamically broken lines of text. One would probably have to wrap each word in a container and keep track of the absolute positions.
You can use getSelection() to do that, but it doesn't work everywhere. [0] [1] [0] https://stackoverflow.com/questions/7563169/detect-which-wor... [1] http://jsfiddle.net/Vap7C/15/