HTML5 Presentation

    image
    I noticed that currently Google programmers have begun to use a new form of presentation of their presentations.

    A typical example , another example - we see frames, effects, images, general style.

    A simple search led to a convenient template , which, with its simplicity, allows you to create good presentations with easily implemented elements.

    An example of use and its source code show the possibilities of this, in my opinion, successful tool.

    Copy Source | Copy HTML
    1.         

    2.           Slide with bullet points that builds
    3.         
    4.         
      •           
      •             This is an example of a list
      •           
      •           
      •             The list items fade in
      •           
      •           
      •             Last one!
      •           
      •         
    5.  
    6.         
    7.           

      Any element with child nodes can build.

    8.           

      It doesn't have to be a list.

    9.         
  •       


  • As you can see, the slides are separated by the article tag . Since we have full html, there is no problem implementing code and frames for example, which is important for demonstrating the capabilities of the API.

    Copy Source | Copy HTML
    1.           

      Style in Code - new!

    2.   
    3.   
    4.                 
    5.                     
    6. ... var australia = new google.maps.LatLng(-25, 133);
    7.       map = ...
    8.       layer = new google.maps.FusionTablesLayer({
    9.         query: {
    10.           select: 'geometry',
    11.           from: '815230'
    12.         },
    13.         styles: [{
    14.           polygonOptions: {
    15.             fillColor: "#00FF00",
    16.             fillOpacity: 0.3
    17.           }
    18.         }, {
    19.           where: "birds > 300",
    20.           polygonOptions: {
    21.             fillColor: "#0000FF"
    22.           }
    23.         }, {
    24.           where: "population > 5",
    25.           ...});
    26.       layer.setMap(map);
    27.     


    All sources are available, based on them you can create your own presentation templates.
    An example of a reference presentation .

    Also popular now: