LoginSignup
0
0

More than 5 years have passed since last update.

Reveal.jsを使ってスライドを作成する方法

Posted at

自分用にメモ。

インストール

  1. GitHubリポジトリからmasterブランチを適当な場所にclone
  2. cd reveal.js; && npm install する
  3. index.htmlを以下のように編集
index.html
<div class="reveal">
    <div class="slides">
        <section data-markdown="slides/slide1.md"
            data-separator="\n---\n$"
           data-vertical="\n--\n">
            <script type="text/template">
            </script>
        </section>
    </div>
</div>
  1. ディレクトリ、ファイル作成
$ mkdir slides
$ touch slides/slide1.md
  1. ローカルで見る
$ npm start
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0