Title demo presentation

What is this demo about ?

  • A javascript lightweight presentation library
  • Is very easy to use
  • Is powerful
  • Is cross-browser compatible

Presentation5 features

  • automatic font size adjustment for slides
  • looks nice
  • different css themes
  • Effects, transitions between slides
    • slide to the right
    • convex
    • concave
  • uses jquery and highlight.js

Highlight.js code examples

  • methods called on jQuery selections are in the $.fn namespace, and automatically receive and return the selection as this.
  • Ex.:
    
    $(“p”).html(“Test paragraph”);
    $(“div#id”).remove();
    				
  • methods in the $ namespace are generally utility-type methods, and do not work with selections
  • Ex.:
    
    $.each([ "foo", "bar", "baz" ], function( idx, val ) { 		
    	console.log( "element " + idx + " is " + val );
    });