Commit Graph

93 Commits

Author SHA1 Message Date
janis 328cf3b8e8 add / remove elements 2024-01-15 16:24:18 +01:00
janis 6761ff8dfe some more docs 2024-01-15 15:43:37 +01:00
janishutz fd49cd4fb4 some small fixes 2024-01-11 18:00:00 +01:00
janishutz 2d9c48d375 update jsdocs 2024-01-10 16:21:23 +01:00
Janis Hutz 6a74c4e237 Merge branch 'impress:master' into v3 2024-01-10 08:30:14 +01:00
janishutz 472e6d0f19 some small progress 2024-01-09 20:22:02 +01:00
janis e326b2635f some more restructuring 2024-01-09 09:32:41 +01:00
janishutz 4199e99d81 massive readme update 2024-01-08 21:21:10 +01:00
janishutz b4cc35084c some more TS config 2024-01-08 20:53:24 +01:00
janishutz 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
Thomas Reitmayr b3a7a632c7 Fix default substep order when no explicit order given (#855) (#856)
This affects both going to the next and previous substep.
2023-12-05 06:25:20 +02: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
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
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 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
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 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
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
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
Tobias Bora b7983887aa media plugin doc: autostart -> autoplay (#748) 2019-12-07 11:40:07 +02:00
Oliver Sanders 934c2266c4 substep: add substep-active class (#741) 2019-09-11 14:42:24 +03:00
Henrik Ingo 646fc3c45a Fix lint 2019-06-27 09:07:33 +03:00
Henrik Ingo 05cf6ffded rel: In teardown, only reset data-x/y/z attribute if we modified it.
Fixes downstream bug in impressionist:
https://github.com/henrikingo/impressionist/issues/20
2019-06-27 06:58:48 +03:00
Christoph Weiler 628b78f3fd Bugfix: Scaling bug on swipe, when window scale is not 1 (#736) 2019-06-13 13:27:27 +03:00
Will Soares c61403d57a Trigger event on substep enter (#730) 2019-04-25 13:41:50 +03:00
Moritz 898083116b Update dependencies and remove outdated ones (#722)
* Update dependencies and remove outdated ones
* Add package lock file
* Add minified file
* Karma now uses headless browser to run QUnit
* Add to readme that node and npm install is required
* Update license info
* Add lint-new but don't use it in CI yet
2019-04-10 10:21:23 +03:00
Guilherme I F L Weizenmann 97546a5536 Add fullscreen with support to remote presentation controller (#712)
- F5 to enter/exit
- Escape to exit
2019-02-06 13:36:04 +02:00
Guilherme I F L Weizenmann 6db3f7c877 Add support for "." to enter/exit blackout screen (#716)
* Add support for "." to enter/exit blackout screen

- This is the default on Power Point
- THis add support for remote controller presentation blackout key

* Rename autoplay event call from resume to play
2019-02-06 13:25:11 +02:00
Guilherme I F L Weizenmann 6776a0dab7 Add pause and play events to autoplay (#713)
This is useful to request pause/resume from other plugins
2019-02-06 13:21:51 +02:00
Henrik Ingo 24e28cc43f Fix example in plugin README 2019-01-02 13:35:27 +02:00
Henrik Ingo 4d3adb09cd Fix form plugin for input fields.
It turns out input[type=text] will only find input fields where
the type attribute is explicitly set to text, but would skip
fields that left it out and defaulted to type text. This changes
to catch all types of input elements.
2019-01-01 21:40:46 +02:00
zilioti dd74d3da0a Add keyup for 191 keyCode (#705) 2018-10-22 11:16:53 -04:00