Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
REVEAL.JSをちょっとだけ使ってみた
Search
S-cubism
January 19, 2018
Technology
0
250
REVEAL.JSをちょっとだけ使ってみた
S-cubism
January 19, 2018
Tweet
Share
More Decks by S-cubism
See All by S-cubism
WSLでreactの開発環境作った話
scubism
0
630
未経験者がAndroidアプリをリリースするまで
scubism
0
99
scubism_LT_20180223_細田謙二_イベントソーシング
scubism
0
140
忙しい人のための仮想通貨
scubism
0
83
サーバ作業の注意コマンド
scubism
0
110
最近勉強してること、次にやりたいこと
scubism
0
94
FOOD TECH
scubism
0
64
Firebase(Realtime Database)について
scubism
0
110
複数会社複数リポジトリでのソース管理
scubism
0
97
Other Decks in Technology
See All in Technology
インフラとバックエンドとフロントエンドをくまなく調べて遅いアプリを早くした件
tubone24
0
160
プロポーザルのつくり方 〜個人技編〜 / How to come up with proposals
ohbarye
4
310
ジョブマッチングサービスにおける相互推薦システムの応用事例と課題
hakubishin3
3
620
2024年グライダー曲技世界選手権参加報告/2024 WGAC report
jscseminar
0
200
DatabricksにおけるLLMOpsのベストプラクティス
taka_aki
4
1.6k
社内で最大の技術的負債のリファクタリングに取り組んだお話し
kidooonn
1
470
OCI Data Integration技術情報 / ocidi_technical_jp
oracle4engineer
PRO
1
2.6k
Postmanの日本市場におけるDevRel (的) 活動 / Postman's DevRelish activities in Japan
yokawasa
1
120
スクラムチームを立ち上げる〜チーム開発で得られたもの・得られなかったもの〜
ohnoeight
2
300
なぜ今 AI Agent なのか _近藤憲児
kenjikondobai
0
150
Windows Autopilot Deployment by OSD Guy
tamaiyutaro
0
310
Incident Response Practices: Waroom's Features and Future Challenges
rrreeeyyy
0
120
Featured
See All Featured
Gamification - CAS2011
davidbonilla
80
5k
A better future with KSS
kneath
238
17k
Typedesign – Prime Four
hannesfritz
40
2.4k
Embracing the Ebb and Flow
colly
84
4.5k
Git: the NoSQL Database
bkeepers
PRO
427
64k
The Cost Of JavaScript in 2023
addyosmani
45
6.7k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
191
16k
The Language of Interfaces
destraynor
154
24k
Documentation Writing (for coders)
carmenintech
65
4.4k
10 Git Anti Patterns You Should be Aware of
lemiorhan
654
59k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
250
21k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
246
1.3M
Transcript
REVEAL.JS をちょっとだけ使ってみた REVEAL.JS をちょっとだけ使ってみた 開発一部 坂元 佑太 1
REVEAL.JS とは REVEAL.JS とは HTML でプレゼン資料を作れるフレームワーク スライドのネストが可能 markdown でも記述可 PDF
出力も可 スライドのテーマ多数 2
最小構成 最小構成 <html> <head> <link rel="stylesheet" href="css/reveal.css"> <link rel="stylesheet" href="css/theme/white.css">
</head> <body> <div class="reveal"> <div class="slides"> <section>Slide 1</section> <section>Slide 2</section> </div> </div> <script src="js/reveal.js"></script> <script> Reveal.initialize(); </script> 3
最小構成 最小構成 スライドの内容はここを編集するだけ <div class="reveal"> <div class="slides"> <section>Slide 1</section> <section>Slide
2</section> </div> </div> 4
スライドのネスト? スライドのネスト? <div class="reveal"> <div class="slides"> <section>Single Horizontal Slide</section> <section>
<section>Vertical Slide 1</section> <section>Vertical Slide 2</section> </section> </div> </div> 5
Single Horizontal Slide 6 . 1
Vertical Slide 1 6 . 2
Vertical Slide 2 6 . 3
MARKDOWN を使う MARKDOWN を使う <section data-markdown> <textarea data-template> ## Page
title A paragraph with some text and a [link](http://hakim.se). </textarea> </section> 7 . 1
MARKDOWN を使う MARKDOWN を使う slide の内容をexample.md に記述 ページ区切りを--- で記述 ページのネストを>>>
で記述 <section data-markdown="example.md" data-separator="---$" data-separator-vertical=">>>$"> </section> 7 . 2
テーマ テーマ 8 . 1
テーマ名 背景色 文字色 リンク black 黒 白 青 デフォルト white
白 黒 青 league グレー 白 青 beige ベージュ ダーク 茶色 sky 青 薄ダーク 青 night 黒 白 橙 serif 茶 グレー 茶 simple 白 黒 青 solarized クリーム 濃緑 青 8 . 2
参考文献 参考文献 https://github.com/hakimel/reveal.js/ https://qiita.com/ryurock/items/9c6de36b9d6a716e7992 9