Skip to content

Plugin for embedding polls / quizzes into reveal.js presentations

License

Notifications You must be signed in to change notification settings

jschildgen/reveal.js-poll-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

reveal.js-poll-plugin

Plugin for embedding polls / quizzes into reveal.js presentations

General Information

The poll plugin consists of three parts:

  1. reveal.js plugin to show a poll and the result within the slides
  2. mobile website for end users to participate in the poll
  3. API server and SQLite database to manage the poll data

When a slide is shown that has a poll, the audience can open the mobile website and vote. When the presenter clicks on one of the answers, the poll is finished and the result is shown on the slides as a bar chart. All the time, when there is at least one response, the number of participations is shown on the top right corner of the poll.

Screenshot

Screenshot

Files

  • index.php Mobile web site for end users to participate in the poll
  • script.js Javascript logic for the mobile web site
  • poll.css Stylesheet for reveal.js
  • poll.js reveal.js Plugin
  • api/index.php PHP script that handles API requests (start/stop poll, respond, ...)
  • api/poll.db SQLite database that stores the questions, answers and responses

Installation and Usage

Server

The web server that hosts the API and the database requires PHP and php-sqlite3. The same server can be used to host the mobile website.

  1. Move the content of the poll folder to the root directory of the server, let's call it http://example.com for now
  2. Make the folder api and the database file api/poll.db writable (777)
  3. Test the API with http://example.com/api, it should show "No method"
  4. Test the mobile website with http://example.com, it should show "currently no poll running"
  5. Test the API again: http://example.com/api/?method=start_poll&data={"question":"Test","answers":["X","Y","Z"],"correct_answers":["B"]}, it should show {"OK":true}
  6. Test the mobile website again: http://example.com, It should show the question "Test" and three answers.

Presentation Client

The presentation client needs a PHP-enabled web server to forward API requests to the server. It's also possible that the presentation client is the same machine as the web server.

  1. Move the content of the poll folder to the reveal.js presentation directory
  2. Write the URL to the server into poll.js
  3. Include the CSS in your slides: <link rel="stylesheet" href="poll/poll.css" />
  4. Add the jQuery library (download from https://jquery.com, unzip, load: <script src="path/to/jquery.js"></script>)
  5. Initialize reveal.js with the following dependency: { src: 'poll/poll.js', async: true }
  6. Add polls to your slides:
<div class="poll fragment" style="bottom:50px">
 <h1>What is the question?</h1>
 <ul>
   <li>Wrong answer</li>
   <li data-poll="correct">Correct answer</li>
 </ul>
 <h2></h2>
</div>

Use the style="bottom:..., right:..." to move the poll to the correct position.

About

Plugin for embedding polls / quizzes into reveal.js presentations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published