Commit Graph

426 Commits

Author SHA1 Message Date
4199e99d81 massive readme update 2024-01-08 21:21:10 +01:00
b4cc35084c some more TS config 2024-01-08 20:53:24 +01:00
90653fa34e restructure, move to TS 2024-01-08 20:37:18 +01:00
janis
125ab80766 add some docs 2024-01-08 16:58:10 +01:00
janis
ad27645c39 Some more work on refactoring 2024-01-08 16:16:45 +01:00
Janis Hutz
e0ebff6b0c Update README.md 2023-11-06 10:23:22 +01:00
Janis Hutz
80d496f2bd add logo with correct name 2023-11-06 10:20:22 +01:00
Janis Hutz
42af5452ae Delete logo.jpg.JPG 2023-11-06 10:19:27 +01:00
Janis Hutz
2b88f378b2 Update README.md 2023-11-06 10:19:01 +01:00
Janis Hutz
78bdf4050b add impress logo 2023-11-06 10:18:12 +01:00
Janis Hutz
fa87b43aab Update README.md
remove commit activity
2023-11-06 10:15:36 +01:00
Janis Hutz
698558254f Update README.md 2023-11-06 10:10:41 +01:00
Meng Weng Wong
d0ba7ff884 New "bookmark" plugin allows hotkey fast-travel to specific steps (#852)
add plugin bookmark supporting direct access via hotkeys
similar to "click", we can now fast travel using hotkeys e.g. 1 2 3
2023-11-01 01:13:40 +02:00
Janis Hutz
9475720f42 Plugins documentation / getting started guide (#835) 2023-02-02 04:14:44 -08:00
Janis Hutz
4edb9e08a0 Getting Started Guide (#831)
Also update version and copyright information
2023-02-02 04:11:33 -08:00
Janis Hutz
0e26510cb4 Npm readme (#836) 2023-02-01 14:04:44 -08:00
Falco Nogatz
7817f12c12 Allow multiple data-substep-order with the same value (#825) 2022-12-23 06:52:07 -08:00
Falco Nogatz
972dc413f3 Add .slideView or .preView classes in speaker console view (#827) 2022-12-19 07:55:17 -08:00
Falco Nogatz
64d66bf77f Replace backslashes by slashes in href to CSS (#828) 2022-12-11 17:03:49 -08:00
thawk
b572362c3a Auto guess slide title from first non-blank line (#821)
* Auto guess slide title from first non-blank line
* If line content is too long, trim to the first 40 bytes
2022-10-17 08:39:54 +08:00
thawk
0d52faa60d Fix incorrect tag in 3D-positions example (#822) 2022-10-09 23:16:02 +03:00
thawk
f8dd0e92b4 Improve markdown support. (#817)
1. Support `marked`, you can using it instead. #811
2. Auto trim the indentation, so it can be indent like regular HTML.
   #812
2022-08-19 11:57:48 +03:00
thawk
dc3cf69747 Fix issue that data-x/y/z can't use relative-to-screen-size unit. (#815) 2022-07-21 21:49:39 +03:00
Henrik Ingo
78c954ac09 Change default target resolution to HD 1920x1080.
If you aren't setting target width and height explicitly in the root div,
this change will likely affect the size and layout of your presentation
steps. See DOCUMENTATION.md for details and how to fix.
2022-05-29 11:41:25 +03:00
Henrik Ingo
20cd28ff00 Add fsevents to package-lock.json 2022-05-29 11:41:06 +03:00
Christoph Neumann
bc3612118a Fix impress().lib.util reference in blackout.js (#810) 2022-05-02 16:33:18 +03:00
thawk
629f7686f3 Add relative move and rotate to rel plugin (#794)
The relative position in rel plugin is currently based on the world coordinate. So for the same effect, like fly in from the right-hand side, we must use different `data-rel-x/y/z` value. Why not let the plugin do the hard part?

So I introduce a `data-rel-position`, when set to `relative`, all relative attribute is based on the position and rotation of previous slide. So no matter the rotation of previous slide, data-rel-x="1000" always looks like fly in from the right-hand side. We can change the position and rotation of one slide, and the position of all following slides will be changed too.

When `data-rel-position` is set to `relative`, relative rotation has a clear meaning. It describes the relative rotations between slides. We don't need to set rotations for all slide, setting the key slides is enough. If `data-rel-position` is not relative, the effect of `data-rel-rotate-x/y/z` is not clear, so they're only used when `data-rel-position="relative"`.

After the introduction of relative rotation, there're 6 attribute that will inherit from previous slide. If we want to set a relative X move, we have to set all other 5 attributes to 0. It's boring. So a `data-rel-clear` is used to set all 6 attributes to 0, and then the value specified in current slide is applied. 

The `examples/3D-positions/index.html` shows some usage. As you can see, the html code of two slide ring is the same, and slides except for the first two in a ring has no position attributes. It work by inheriting the previous one.

This PR invokes a lot math calculations. Basically, the rotation of a slide is translated into the coordinate describing the directions of X/Y/Z axes. And `data-rel-x/y/z` can be easily calculated by that. The rotations is the hard part, I mainly use the algorithm in the Quaternions and spatial rotation - Wikipedia to compose two and more rotations.  I'm not a math guy, hope I don't make much mistakes.
2022-04-24 21:37:50 +03:00
thawk
d3760dfa0a make data-x/y/z supports relative-to-screen size (#804) 2022-02-13 12:35:52 +02:00
thawk
20f74a8b56 Fix relative-to-screen-size calculation (h and w) (#799) 2022-01-30 17:17:56 +02:00
hugocvx
ecbdd43ca8 use element title as navigation select option text when available (#803) 2022-01-30 17:06:42 +02:00
thawk
4bceee7fd2 use decodeURIComponent() to get ID from URL hash 2021-08-03 13:22:23 +03:00
Ikko Ashimine
63dba5f128 Update impress.js 2021-07-28 22:05:03 +03:00
Ikko Ashimine
762bdd8da4 Fix typo in impress.js
transtion -> transition
2021-07-28 22:05:03 +03:00
thawk
e366207cea apply markdown dialect to all elements 2021-07-28 11:01:40 +03:00
Henrik Ingo
f68e5fff29 Pimp the cube demo a bit.
I always wanted to do it this way. Today finally had some free time to
hack it this weekend.
2021-02-27 14:52:33 +02:00
Daniel Sockwell
4c9d2e38aa Add ability to specify substep order (#779)
The substep plugin currently shows each substep in the order in which
it appears in the HTML.  This is not always an ideal fit for some
presentation styles, where it would be helpful to specify a different
order (e.g., to add annotations to an image).

This commit allows users to specify a custom order via the
`data-substep-order` attribute.  Substeps without a
`data-substep-order` attribute are revealed last.

This commit also updates the Substep README to document the new
feature.
2021-02-26 16:24:10 +02:00
Bartek Szopka
4229a3e25c @bartaz removes himself from tutorial text ;) (#777) 2021-01-04 18:56:36 +02:00
Henrik Ingo
dcc8446788 Remove npm-update from CircleCI (#778)
It started failing 2 months ago and shouldn't be needed at all.
2021-01-03 20:31:27 +02:00
kdxcxs
d0c427f172 Support Chinese in impressConsole (#774) 2020-10-11 10:42:48 +03:00
Tim Gates
d8e2f17f95 docs: Fix simple typo, glithes -> glitches (#773) 2020-09-13 20:33:02 +03:00
Henrik Ingo
ddfb5eb78c Release version 1.1.0 2020-04-10 20:58:05 +03:00
IngridRegina
a5e5b96291 created impress-common.css (#760)
Co-authored-by: Ingrid-Regina Vähi <ingrid.vahi@adm.ee>
2020-04-05 17:14:18 +03:00
Mohamed Feddad
93b846f07a Add autoplay URL parameter trigger. (#764)
Resolves #720
2020-04-02 13:21:20 +03:00
Mohamed Feddad
203b85808c Add markdown dialect attribute. (#763)
Resolves #724
2020-04-01 10:08:27 +03:00
Henrik Ingo
ef57b5b471 Add npm run all to run build+test+lint 2020-03-29 11:32:18 +03:00
Henrik Ingo
99484d11b8 node build.js forgotten in a media plugin update
Fixes b7983887aa
2020-03-29 11:28:54 +03:00
Henrik Ingo
511d87e726 Update all node_modules to newest versions 2020-03-29 11:26:05 +03:00
Henrik Ingo
d3c467b0fd Use darker text for classic-slides
Based on audience feedback from conference talk.
2020-03-23 14:43:12 +02:00
Henrik Ingo
64dd0f4064 Add documentation and examples for scaling to larger screens.
Document all attributes to root element (#impress) in DOCUMENTATION.md.

For the main demo (/index.html) add width, height, max-scale, min-scale
attributes to the main demo. These just use the defaults, except
data-max-scale="3" which allows to scale to larger screens (HD, 4K).

For examples/classic-slides, add attributes to root element and set it
to target Full HD 1920 x 1080 resolution. Adjust CSS to match.

Add notification everywhere that defaults will change in 2021.
2020-03-23 14:25:15 +02:00
Eduardo Moreira
6ced0516f6 Remove bower from project (#762) 2020-03-22 15:05:43 +02:00