diff --git a/_includes/youtube.html b/_includes/youtube.html new file mode 100644 index 0000000000..6cd254828a --- /dev/null +++ b/_includes/youtube.html @@ -0,0 +1,34 @@ +{% comment %} + +{% endcomment %} +{% assign embedId = src | replace: "https://www.youtube.com/embed/", "" %} +{% assign embedUrl = "https://www.youtube-nocookie.com/embed/" | append: embedId | append: "?autoplay=1&mute=1&rel=0" %} + diff --git a/understanding/21/img/carousel-fail.mp4 b/understanding/21/img/carousel-fail.mp4 deleted file mode 100644 index 534e9591e1..0000000000 Binary files a/understanding/21/img/carousel-fail.mp4 and /dev/null differ diff --git a/understanding/21/img/code-diff.gif b/understanding/21/img/code-diff.gif deleted file mode 100644 index c83b14e794..0000000000 Binary files a/understanding/21/img/code-diff.gif and /dev/null differ diff --git a/understanding/21/img/code-view-columns.mp4 b/understanding/21/img/code-view-columns.mp4 deleted file mode 100644 index eb33c5d31f..0000000000 Binary files a/understanding/21/img/code-view-columns.mp4 and /dev/null differ diff --git a/understanding/21/img/reflow-container-resize.mp4 b/understanding/21/img/reflow-container-resize.mp4 deleted file mode 100644 index bea5c80821..0000000000 Binary files a/understanding/21/img/reflow-container-resize.mp4 and /dev/null differ diff --git a/understanding/21/img/reflow-text-resize.mp4 b/understanding/21/img/reflow-text-resize.mp4 deleted file mode 100644 index e5d6eeb7e6..0000000000 Binary files a/understanding/21/img/reflow-text-resize.mp4 and /dev/null differ diff --git a/understanding/21/reflow.html b/understanding/21/reflow.html index 9562d1be9f..a382e933f2 100644 --- a/understanding/21/reflow.html +++ b/understanding/21/reflow.html @@ -44,9 +44,7 @@
Users who need to enlarge (zoom) text to read it benefit significantly when it reflows. Regardless of the size of the text, it continues to wrap within the visible viewport. A whole line of text is visible, making it easier for the eye to track from the end of one line to the start of the next. Users only need to scroll in the direction of reading to read additional lines of text.
As text is resized, the words wrap so that the text lines do not exceed the viewport. (This quick demo to 200% is not intended to illustrate a test for conformance.)
This criterion requires non-excepted sections of content that are written in horizontal languages reflow when narrowed to a width equivalent to 320 CSS pixels. Similarly, sections of content that are written in vertical languages (which are not as commonly used on the web and so will be used much less frequently in examples) need to be able to reflow when rendered at a height equivalent to 256 CSS pixels.
As the container for the text is reduced in width, the words wrap so that the text lines do not exceed the container width. (This quick demo is not intended to illustrate a test for conformance.)
Fail: In this modified version of the previous carousel, the second panel's content does not fit within the 320 CSS pixel viewport.
Being able to review differences in code, or text, side-by-side can be an instance where a scrolling two-column layout can benefit users.
Pass: An interface to review code/document changes provides a two-column comparison between the original and modified content. Each column fits within a 320 CSS pixel wide container and a horizontal scrollbar can be used to position each column into the visible viewport.
@@ -330,7 +319,7 @@{% include "youtube.html", width: "978", height: "584", src: "https://www.youtube.com/embed/fWRL6NtHvZQ", title: "Animation of zooming in on a responsive site. The content reflows to fit the screen." %}
Note that as the zoom percentage increases, the navigation changes first to hide options behind a "More" dropdown menu. As zooming continues, most navigation options are eventually behind a "hamburger" menu button. All the information and functionality is still available from this web page. There is no horizontal scrolling.