, , ,

How can we show hidden and uncounted slides in an Html presentation?

Posted by

If you have made your own Html slide presentation for presenting somewhere. you have lots of slides and want to take them in later use but in any presentation, you want to hide or show uncount. so, using revealjs, you can hide and uncount your slides through slide visibility. And take your slides presentation in your format and layout.

It’s very simple, you merely need to select two options for Html coding. The first one is hidden slides and the second one is uncounted slides. And the next thing is where you will apply this option and in which way. You will put these two options under the data-visibility section. And you will put this value in the data-visibility section, it will behave as usual according to you. Firstly, you will set up your Html web page using revealjs.

First, I will show you hidden slide options with code. if you will run this below code then you will get the exact result.

<section>Slide 1</section>
<section data-visibility="hidden">Slide 2</section>
<section>Slide 3</section>

After running this code, you will get valuable results according to code.

The Second is uncounted slides with a code option. if you will run this below code then you will get the exact outcomes.

<section>Slide 1</section>
<section>Slide 2</section>
<section data-visibility="uncounted">Slide 3</section>

After running this code, you will get valuable outcomes according to code value.

guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x