[Credit to @John_Lowe , who first shared this solution to a question posed by @stevebudd .]
Use case: I want to give students a series of related videos, and would like to keep them on the same Page/etc. yet not build a table of video frames or links which could take up Page space.
This process creates a single <iframe> on a Page/etc., within which each of the videos will play when the link is selected. (The process would also work, more broadly, to display any resource with a URI, not just videos as in this case.) The key is having the <a>s reference an internal Canvas link (the *.html docs), which allows the use of the named target attribute (if the <a> references an external URL, target always = _blank).
Two-step process:
[Updated: Watch my
1. Create, and upload into your course Files, an *.html file for each video, with content as here:
<iframe src="https://player.vimeo.com/video/77046793" width="100%" height="400"></iframe>
2. Create your Page with a single iframe at the top, and links to those *.html files beneath, as below.
<p><iframe style="display: block; margin-left: auto; margin-right: auto;" width="400" height="300" name="box"></iframe></p>
<p style="text-align: center;">single iframe in the space above</p>
<a class="Button Button--secondary" href="https://community.canvaslms.com/courses/1572734/files/68152407/download/?download=1" target="box">Vimeo #1</a>
<a class="Button Button--primary" href="https://community.canvaslms.com/courses/1572734//files/68152406/download/?download=1" target="box">Vimeo #2</a>
<a class="Button Button--warning" href="https://community.canvaslms.com/courses/1572734//files/68152405/download/?download=1" target="box">Vimeo #3</a>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ancient Greek philosopher/linguist; academic techie; enthusiast of sundry pursuits, including eudaimonia, cannoli, and chiptunes. I can see the weasel after the storm (a classical in-joke).