mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-09-20 19:41:31 +02:00
Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
00b0ace386 | ||
|
542bcab569 | ||
|
f023678755 | ||
|
a4ba7a899b | ||
|
d54049445c | ||
|
633e754fee | ||
|
b6933b45ad | ||
|
768335f34b | ||
|
8f4927ac27 | ||
|
c2e048bc16 |
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
github: [hakimel]
|
24
.github/workflows/js.yml
vendored
Normal file
24
.github/workflows/js.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: tests
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [8.x, 10.x, 12.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm install
|
||||
- run: npm run build --if-present
|
||||
- run: npm test
|
||||
env:
|
||||
CI: true
|
@@ -1,5 +0,0 @@
|
||||
language: node_js
|
||||
node_js:
|
||||
- 11
|
||||
after_script:
|
||||
- npm run build -- retire
|
@@ -1,4 +1,4 @@
|
||||
# reveal.js [](https://travis-ci.org/hakimel/reveal.js) <a href="https://slides.com?ref=github"><img src="https://s3.amazonaws.com/static.slid.es/images/slides-github-banner-320x40.png?1" alt="Slides" width="160" height="20"></a>
|
||||
# reveal.js  <a href="https://slides.com?ref=github"><img src="https://s3.amazonaws.com/static.slid.es/images/slides-github-banner-320x40.png?1" alt="Slides" width="160" height="20"></a>
|
||||
|
||||
A framework for easily creating beautiful presentations using HTML. [Check out the live demo](https://revealjs.com/).
|
||||
|
||||
@@ -355,7 +355,7 @@ Reveal.initialize({
|
||||
// the automated time allocation causes slide pacing to fall
|
||||
// below this threshold, then you will see an alert in the
|
||||
// speaker notes window
|
||||
minimumTimePerSlide: 0;
|
||||
minimumTimePerSlide: 0,
|
||||
|
||||
// Enable slide navigation via mouse wheel
|
||||
mouseWheel: false,
|
||||
@@ -904,6 +904,7 @@ The default fragment style is to start out invisible and fade in. This style can
|
||||
<section>
|
||||
<p class="fragment grow">grow</p>
|
||||
<p class="fragment shrink">shrink</p>
|
||||
<p class="fragment strike">strike</p>
|
||||
<p class="fragment fade-out">fade-out</p>
|
||||
<p class="fragment fade-up">fade-up (also down, left and right!)</p>
|
||||
<p class="fragment fade-in-then-out">fades in, then out when we move to the next step</p>
|
||||
|
@@ -63,6 +63,7 @@ ul, ol, div, p {
|
||||
width: 100% !important;
|
||||
height: auto !important;
|
||||
zoom: 1 !important;
|
||||
pointer-events: initial;
|
||||
|
||||
left: auto;
|
||||
top: auto;
|
||||
|
Reference in New Issue
Block a user