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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
S-cubism
January 19, 2018
Technology
280
0
Share
REVEAL.JSをちょっとだけ使ってみた
S-cubism
January 19, 2018
More Decks by S-cubism
See All by S-cubism
WSLでreactの開発環境作った話
scubism
0
730
未経験者がAndroidアプリをリリースするまで
scubism
0
150
scubism_LT_20180223_細田謙二_イベントソーシング
scubism
0
160
忙しい人のための仮想通貨
scubism
0
130
サーバ作業の注意コマンド
scubism
0
150
最近勉強してること、次にやりたいこと
scubism
0
130
FOOD TECH
scubism
0
78
Firebase(Realtime Database)について
scubism
0
140
複数会社複数リポジトリでのソース管理
scubism
0
110
Other Decks in Technology
See All in Technology
Oracle AI Database@AWS:サービス概要のご紹介
oracle4engineer
PRO
4
2.7k
long-running-tasks
cipepser
2
450
Fabric-cicd によるAzure DevOps デプロイ
ryomaru0825
0
160
AI時代から振り返るTerraform drift運用の歴史 / AI Age Reflections on the History of Terraform Drift Operations
aeonpeople
0
600
Javaで学ぶSOLID原則
negima
1
240
AIが変えた"品質の守り方"
kkakizaki
13
5.4k
エンジニアは生成AIと どのように向き合うべきか? ことばの意味という観点から
verypluming
3
300
「コーディング」しない人のための Claude Code 入門 ChatGPT の次の一歩 — 業務に組み込む 育成・共有・自動化
rfdnxbro
1
320
Unlocking the Apps
pimterry
0
120
AI駆動開発でなんでもハンズオン環境をつくってみた
yoshimi0227
0
180
基礎から解説!Icebergで紐解くSnowflake×Databricks連携の現在地
cm_yasuhara
0
400
oracle-to-databricks-migration-with-llm-and-dbt
casek
1
380
Featured
See All Featured
Redefining SEO in the New Era of Traffic Generation
szymonslowik
1
320
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.4k
Tell your own story through comics
letsgokoyo
1
930
Amusing Abliteration
ianozsvald
1
190
Groundhog Day: Seeking Process in Gaming for Health
codingconduct
0
190
Rails Girls Zürich Keynote
gr2m
96
14k
Documentation Writing (for coders)
carmenintech
77
5.4k
4 Signs Your Business is Dying
shpigford
187
22k
Winning Ecommerce Organic Search in an AI Era - #searchnstuff2025
aleyda
1
2k
How STYLIGHT went responsive
nonsquared
100
6.1k
Designing Powerful Visuals for Engaging Learning
tmiket
1
390
Unsuck your backbone
ammeep
672
58k
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