2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

markdown使用時のreveal.jsでよく使う記法集

Posted at

テンプレートのmarkdown

---

# 一番大きな見出しはこんな感じ
~ ふつうのもじ ~

---

## 二番目に大きな見出し


---

### 三番目に大きな見出し

>>>

">"が三つで下スライド作れる

>>>

#### 四番目に大きな見出し

---

### オートアニメイト

<section data-auto-animate>
1 ---
</section>

<section data-auto-animate>
1 --- <br>
2 ---
</section>

<section data-auto-animate>
1 --- <br>
2 --- <br>
3 ---
</section>

---

### 文字スタイル
文字のスタイル普通<br>
<span style="font-size: 80%; color: white;">
文字サイズの変更
</span>

>>>

### コードはこんな感じ
\```
const users = User.findAll();
for (const user in users) {
  const friends = user.findFriend();
  // ...
}
\```

---

<p style="text-align: right">右寄せ</p>
<p style="text-align: right"><span style="font-size: 70%; color: white;">右寄せ+文字スタイル変更</span></p>


---

## コードハイライト

\```text [1|2]
1 ------
2 ------
\```

改ページ

-を3つで改ページ
---

下ページ

>を3つで下に改ページ
>>>

image.png

AutoAnimate

スライドの変化前と変化後の状態を指定するとreveal.jsがアニメーションを付けてくれる

<section data-auto-animate>
1 ---
</section>

<section data-auto-animate>
1 --- <br>
2 ---
</section>

<section data-auto-animate>
1 --- <br>
2 --- <br>
3 ---
</section>

image.png
image.png
image.png

コードスニペット

コードを綺麗に見せる事が出来る
```で囲む

image.png

コードハイライト

コードの特定の場所を強調する事が出来る

```text[1|2-3|4,6]
```

image.png

文字サイズの変更

<span style="font-size: 80%; color: white;">
</span>

文字寄せ

<p style="text-align: right">
</p>

image.png

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?