My problem with those responsive web sites is that they only react to changes of the browser window width, but not the height. For example, on this page, you can change the width so that we only see 3 short sentences. But if you change your browser height from 800x800 to 800x350, you still get the full, long text, but it's cut off in the middle, and there is a scroll bar. If the author's intent was to try hard to sho…
Responsive Text
51–60 of 63 posts
Re: Responsive Text
#52http://html5doctor.com/the-details-and-summary-elements/
You could make default the details to be "open" for big screens and closed, showing the summary only, for small ones. Downside is that you only get two levels if you stick to the spirit and letter of the standard.
Re: Responsive Text
#53If it's not important enough to show on mobile it can probably be removed on the desktop too.
Re: Responsive Text
#54Re: Responsive Text
#55We do something similar to this on Lanyrd - try shrinking the browser window on http://sxsw.lanyrd.com/ for example. The labels on the tabs change from "your sessions, your contacts' sessions, all sessions (1114), attendees (2594)" at the widest setting to "you, contacts, all, attendees" on narrower screens. It's implemented by wrapping a span with a class of "not-narrow-friendly" around the words that should be hidd…
Re: Responsive Text
#56Re: Responsive Text
#57We do something similar to this on Lanyrd - try shrinking the browser window on http://sxsw.lanyrd.com/ for example. The labels on the tabs change from "your sessions, your contacts' sessions, all sessions (1114), attendees (2594)" at the widest setting to "you, contacts, all, attendees" on narrower screens. It's implemented by wrapping a span with a class of "not-narrow-friendly" around the words that should be hidd…
Unsolicited feedback: At the narrower widths, the sidebar (.secondary) would be better off falling after the main content (.primary) It might also work having "Filter by topic" turned into a drop down.
Re: Responsive Text
#58http://stephenwattam.com/projects/responsivetext/
The example's a bit crummy, but with some better input it should provide a useful base for visualising important text features.
Re: Responsive Text
#59I may have a problem with OCD, but I would hate the idea that some content is hidden to me just because I'm browsing with the wrong screen/window size. Hiding redundant elements, navigational bars, maybe images, etc... is fine, but I'm definitely not comfortable with the idea of hiding content based on context.
Yeah, it's a very interesting idea, but I don't want half the article if I'm browsing on a mobile device. Besides, I thought the point of responsiveness was to REARRANGE data, not completely eliminate it. styling, yeah, go ahead and get rid of elements and color bars and what have you, shrink pictures, but please don't throw away words!
http://www.w3.org/TR/css3-mediaqueries/ "Among the media features that can be used in media queries are ‘width’, ‘height’, and ‘color’. By using media queries, presentations can be tailored to a specific range of output devices without changing the content itself."
The part "without changing the content itself" is pretty clearly not what he is doing here. Like dozens of others have said, just an interesting idea but not something that should be used like this in practice.
Re: Responsive Text
#60We do something similar to this on Lanyrd - try shrinking the browser window on http://sxsw.lanyrd.com/ for example. The labels on the tabs change from "your sessions, your contacts' sessions, all sessions (1114), attendees (2594)" at the widest setting to "you, contacts, all, attendees" on narrower screens. It's implemented by wrapping a span with a class of "not-narrow-friendly" around the words that should be hidd…
How would you handle internationalisation with that approach?