Websites that look like desktop GUIs
31–40 of 188 posts
Re: Websites that look like desktop GUIs
#32I tried to make my personal website[1] look like an old PalmPilot --- but the look didn't completely translate, especially on the desktop. Alas. [1] https://gowder.io
Re: Websites that look like desktop GUIs
#33I tried to make my personal website[1] look like an old PalmPilot --- but the look didn't completely translate, especially on the desktop. Alas. [1] https://gowder.io
I love this. It reminds me of riding the London Underground, reading Wired articles in the AvantGo app on my Palm V.
Re: Websites that look like desktop GUIs
#34Re: Websites that look like desktop GUIs
#35Re: Websites that look like desktop GUIs
#36Re: Websites that look like desktop GUIs
#37Re: Websites that look like desktop GUIs
#38Never ever do this. If it opens a new page, it’s a link. with a click handler is the wrong thing >99.99% of the time: it should be a link or a button.
Re: Websites that look like desktop GUIs
#39Re: Websites that look like desktop GUIs
#40A major accessibility problem with this: the list uses s with click handlers, rather than links. This makes it not respond properly to clicks with modifiers (e.g. Ctrl+click), not have the right context menu options, not show the href in the status bar, and be completely unusable to users of tools like screen readers or those that would navigate by keyboard. Never ever do this. If it opens a new page, it’s a link. wi…