PresenPress

* This plugin allows you to craete presentation.
* You are able to control these presentations by gestures of the Leap Motion.
* Transition and themes are supported by reveal.js. (https://github.com/hakimel/reveal.js/)

https://github.com/miya0001/presenpress

Author:Takayuki Miyauchi (profile at wordpress.org)
WordPress version required:3.6
WordPress version tested:3.8.1
Plugin version:0.2.4
Added to WordPress repository:26-08-2013
Last updated:02-03-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:100
Rated by:2
Plugin URI:http://wpist.me/
Total downloads:712
Active installs:30+
plugin download
Click to start download
  • This plugin allows you to craete presentation.
  • You are able to control these presentations by gestures of the Leap Motion.
  • JavaScript for slide are supported by reveal.js.

This Plugin published on GitHub.

Some Feature

  • Allow you to create mutiple presentation.
  • Custom style sheet support.
  • Some themes alredy included.
  • cube, page, linear and other transition support.
  • Convert gallery shortcode to the presentation automatically.

Supported Gestures

  • swipe left - Move to next slide.
  • swipe right - Move to previous slide.
  • point - normal pointer
  • touch - Highlighted pointer

How to create presentation

  • Click Add New link in Presenation on the WordPress admin menu.
  • If you want to add next slide, please place <!--nextpage--> tag in the editor.

How to add your custom theme

  • Create your theme CSS. See documentation.
  • Please place the code like following in your functions.php or your custom plugin.
<?php

add_filter('presenpress_themes', function($themes){

    $themes['your_theme_name'] = array(
        'url' => 'http://example.com/your_theme.css',
        'version' => '1.0.0'
    );

    return $themes;
});

Translators