<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ca">
	<id>http://wiki.joanillo.org/index.php?action=history&amp;feed=atom&amp;title=Impress.js._Presentacions_amb_HTML5</id>
	<title>Impress.js. Presentacions amb HTML5 - Historial de revisió</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.joanillo.org/index.php?action=history&amp;feed=atom&amp;title=Impress.js._Presentacions_amb_HTML5"/>
	<link rel="alternate" type="text/html" href="http://wiki.joanillo.org/index.php?title=Impress.js._Presentacions_amb_HTML5&amp;action=history"/>
	<updated>2026-08-30T03:13:33Z</updated>
	<subtitle>Historial de revisió per a aquesta pàgina del wiki</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>http://wiki.joanillo.org/index.php?title=Impress.js._Presentacions_amb_HTML5&amp;diff=254349&amp;oldid=prev</id>
		<title>Joan a 17:16, 4 abr 2016</title>
		<link rel="alternate" type="text/html" href="http://wiki.joanillo.org/index.php?title=Impress.js._Presentacions_amb_HTML5&amp;diff=254349&amp;oldid=prev"/>
		<updated>2016-04-04T17:16:53Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Pàgina nova&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=Introducció=&lt;br /&gt;
5 of the Best Free HTML5 Presentation Systems:&lt;br /&gt;
*http://www.sitepoint.com/5-free-html5-presentation-systems/&lt;br /&gt;
&lt;br /&gt;
Projecte impress.js:&lt;br /&gt;
*https://github.com/bartaz/impress.js&lt;br /&gt;
&lt;br /&gt;
It's a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com. Demostracions oficials i exemples:&lt;br /&gt;
*https://github.com/impress/impress.js/wiki/examples-and-demos&lt;br /&gt;
&lt;br /&gt;
Bones pràctiques per fer una presentació HTML5:&lt;br /&gt;
*http://www.garrreynolds.com/preso-tips/design/&lt;br /&gt;
=Tutorials=&lt;br /&gt;
Els següents tutorials són els que proposa la pàgina oficial en el github:&lt;br /&gt;
*Creating Stunning Visualizations with Impress.js (http://www.1stwebdesigner.com/css/creating-stunning-visualizations-with-impress-js/)&lt;br /&gt;
*Making an Impressive Product Showcase with CSS3 (http://tutorialzine.com/2012/02/css3-product-showcase/)&lt;br /&gt;
*How To Use Impress.js (http://www.cubewebsites.com/blog/guides/how-to-use-impress-js/)&lt;br /&gt;
*Impress With Impress (http://www.andismith.com/blog/2012/01/impress-with-impress/)&lt;br /&gt;
&lt;br /&gt;
Per instal.lar ''impress'' només cal descarregar i descomprimir el zip de la pàgina del github. Si ens fixem, bàsicament el projecte consta de la carpeta js/ amb el fitxer impress.js; la carpeta css/ amb el fitxer impress-demo.css; i el fitxer index.html de l'exemple oficial que ens pot servir de plantilla, i que està ple de comentaris.&lt;br /&gt;
&lt;br /&gt;
El millor que podem fer per començar a treballar, a part de llegir els diferents tutorials, és mirar el codi index.html i mirar d'adaptar-lo a un projecte nostre. Això és el que fem a classe, explicant els comentaris que es troben dins el fitxer index.html. I així, adaptant de forma ràpida el codi, és com obtenim la primera presentació: ''marietes.html''.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
So if you want to build great presentation take a pencil and piece of paper. And turn off the computer.&lt;br /&gt;
...&lt;br /&gt;
Think about it. 'Cause impress.js may not help you, if you have nothing interesting to say.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=Feina per l'alumne=&lt;br /&gt;
*Fer una presentació senzilla, on utilitzis diferents funcionalitats que et proporciona la llibreria impress.js&lt;br /&gt;
*Modifica en algun aspecte el full d'estils, de manera que comencis a personalitzar els disseny de la teva presentació.&lt;br /&gt;
*Minimitza el codi '''impress.js''' amb una eina automàtica com ara ''http://jscompress.com/''.&lt;br /&gt;
&lt;br /&gt;
El resultat de minimitzar el codi (fixar-se en les primeres línies) seria:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(function ( document, window ) {&lt;br /&gt;
    'use strict';&lt;br /&gt;
    &lt;br /&gt;
    // HELPER FUNCTIONS&lt;br /&gt;
    &lt;br /&gt;
    // `pfx` is a function that takes a standard CSS property name as a parameter&lt;br /&gt;
    // and returns it's prefixed version valid for current browser it runs in.&lt;br /&gt;
    // The code is heavily inspired by Modernizr http://www.modernizr.com/&lt;br /&gt;
    var pfx = (function () {&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
queda reduït a:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(function(e,t){&amp;quot;use strict&amp;quot;;var n=function(){var &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
que representa una reducció del codi de 32840 bytes a 7020 bytes, que és una reducció del&lt;br /&gt;
&lt;br /&gt;
(32840 - 7020) / 32840 = 78%&lt;br /&gt;
&lt;br /&gt;
Fixem-nos que la ''minimització'' del codi implica:&lt;br /&gt;
*eliminació dels comentaris&lt;br /&gt;
*eliminació dels retorns de carro&lt;br /&gt;
*renombrar les variables.&lt;br /&gt;
*desavantatge: es perd la ''llegibilitat'' del codi.&lt;br /&gt;
&lt;br /&gt;
Efectivament, substituïnt ''impress.js'' per ''impress_min.js'' funciona correctament.&lt;br /&gt;
&lt;br /&gt;
'''NOTA''': Aquesta pràctica no té entrega. Els alumnes que ho facin mostraran els resultats a classe, i es valorarà positivament la feina feta.&lt;br /&gt;
&lt;br /&gt;
{{Autor}}, abril 2014&lt;/div&gt;</summary>
		<author><name>Joan</name></author>
		
	</entry>
</feed>