Difference between revisions of "Tutorial:Creating HTML5 documents with GeoGebraWeb"
(removed "offline" information (wrong) and tidied) |
Liliana CB (talk | contribs) |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
== GeoGebraWeb Applets== | == GeoGebraWeb Applets== | ||
− | With GeoGebra 4.2 we have introduced pure HTML5 GeoGebra documents. This way GeoGebra applets start even faster than before, and this technology provides availability of GeoGebra for | + | With GeoGebra 4.2 we have introduced pure HTML5 GeoGebra documents. This way GeoGebra applets start even faster than before, and this technology provides availability of GeoGebra for tablet users as well since Java is no longer a prerequisite. |
<div style="overflow: auto;"> | <div style="overflow: auto;"> | ||
<div style="float:right;"> | <div style="float:right;"> | ||
Line 7: | Line 7: | ||
</div> | </div> | ||
− | + | GeoGebra automatically detects a user's web browser and decides if it is running on a tablet, and serves the document in HTML5 format. Hence we strongly suggest to upload all your documents to GeoGebra if you want to publish teaching materials. This has a great advantage: they will work when viewed on a desktop computer or a tablet. | |
− | + | The best way is to use the iframe version that you get get from GeoGebra by clicking on the "Embed" button on the teacher page: | |
− | + | <pre> | |
− | + | <iframe scrolling="no" | |
− | + | src="http://www.geogebra.org/material/iframe/id/23587/width/1600/height/715/border/888888/rc/false/ai/false/sdz/false/smb/false/stb/false/stbh/true/ld/false/sri/false" | |
− | == | + | width="1600px" |
− | + | height="715px" | |
− | + | style="border:0px;"> | |
− | + | </iframe> | |
− | + | </pre> | |
+ | If you add '''<code>/at/preferhtml5</code>''' then the HTML5 version will be served except on very old browsers (eg IE6, IE7, IE8): | ||
<pre> | <pre> | ||
− | + | <iframe scrolling="no" | |
− | + | src="http://www.geogebra.org/material/iframe/id/23587/width/1600/height/715/border/888888/rc/false/ai/false/sdz/false/smb/false/stb/false/stbh/true/ld/false/sri/false/at/preferhtml5" | |
− | + | width="1600px" | |
− | + | height="715px" | |
− | + | style="border:0px;"> | |
+ | </iframe> | ||
</pre> | </pre> | ||
− | |||
− | |||
− | |||
− | |||
[[Category:Advanced Tutorials]] | [[Category:Advanced Tutorials]] | ||
− | |||
− | |||
− |
Latest revision as of 15:55, 29 November 2019
GeoGebraWeb Applets
With GeoGebra 4.2 we have introduced pure HTML5 GeoGebra documents. This way GeoGebra applets start even faster than before, and this technology provides availability of GeoGebra for tablet users as well since Java is no longer a prerequisite.
Contents
GeoGebra automatically detects a user's web browser and decides if it is running on a tablet, and serves the document in HTML5 format. Hence we strongly suggest to upload all your documents to GeoGebra if you want to publish teaching materials. This has a great advantage: they will work when viewed on a desktop computer or a tablet.
The best way is to use the iframe version that you get get from GeoGebra by clicking on the "Embed" button on the teacher page:
<iframe scrolling="no" src="http://www.geogebra.org/material/iframe/id/23587/width/1600/height/715/border/888888/rc/false/ai/false/sdz/false/smb/false/stb/false/stbh/true/ld/false/sri/false" width="1600px" height="715px" style="border:0px;"> </iframe>
If you add /at/preferhtml5
then the HTML5 version will be served except on very old browsers (eg IE6, IE7, IE8):
<iframe scrolling="no" src="http://www.geogebra.org/material/iframe/id/23587/width/1600/height/715/border/888888/rc/false/ai/false/sdz/false/smb/false/stb/false/stbh/true/ld/false/sri/false/at/preferhtml5" width="1600px" height="715px" style="border:0px;"> </iframe>