Я не знал WebSlides, выглядит очень красиво.Вы ссылаетесь на эту демонстрационную страницу, я полагаю: https://webslides.tv/demos/components#slide=15
Эта часть примера построена следующим образом:
<section class="slide-top">
<div class="wrap">
<div class="content-left">
<h3>1/9 left top</h3>
<p>Put content wherever you want. Have less. Do more. Create beautiful solutions.</p>
<p><code>.slide-top and .content-left</code></p>
</div>
</div>
<!-- .end .wrap -->
</section>
<section class="slide-top">
<div class="wrap">
<div class="content-center">
<h3>2/9 center top</h3>
<p>Your story needs to be clear. A great lasting story is about everyone or it will not last. </p>
<p><code>.slide-top and .content-center</code></p>
</div>
</div>
<!-- .end .wrap -->
</section>
<section class="slide-top">
<div class="wrap">
<div class="content-right">
<h3>3/9 right top</h3>
<p>Your story needs to be short. Select words carefully, each one must convey a meaning.</p>
<p><code>.slide-top and .content-right</code></p>
</div>
</div>
<!-- .end .wrap -->
</section>
Как указано здесь, каждый <section>
представляет собой отдельный слайд, поэтомуВ приведенном выше примере показаны разные слайды.
В основном вы дали ответ, это возможно в https://revealjs.com/ и называется Фрагменты (https://revealjs.com/#/fragments). Но WebSlides разработан, чтобы сделать его простым.
Я не знаю, есть ли встроенный способ делать то, что вы хотите, но быстрое и грязное решение - копирование-вставка: вы используете первый элемент на первом слайде, первый и второйэлемент на втором слайде, первый и второй и третий элемент на третьем слайде. Поэтому вам придется редактировать фрагменты n раз. Это очень плохое дублирование, и чтобы избежать этого, вы должны сделатьнемного программирования - или используйте reve.js . Но, это работает в определенной степени:
<section class="slide-top">
<div class="wrap">
<div class="content-left">
<h3>1/9 left top</h3>
<p>Put content wherever you want. Have less. Do more. Create beautiful solutions.</p>
<p><code>.slide-top and .content-left</code></p>
</div>
</div>
<!-- .end .wrap -->
</section>
<section class="slide-top">
<div class="wrap">
<div class="content-left">
<h3>1/9 left top</h3>
<p>Put content wherever you want. Have less. Do more. Create beautiful solutions.</p>
<p><code>.slide-top and .content-left</code></p>
</div>
</div>
<!-- .end .wrap -->
<div class="wrap">
<div class="content-center">
<h3>2/9 center top</h3>
<p>Your story needs to be clear. A great lasting story is about everyone or it will not last. </p>
<p><code>.slide-top and .content-center</code></p>
</div>
</div>
<!-- .end .wrap -->
</section>
<section class="slide-top">
<div class="wrap">
<div class="content-left">
<h3>1/9 left top</h3>
<p>Put content wherever you want. Have less. Do more. Create beautiful solutions.</p>
<p><code>.slide-top and .content-left</code></p>
</div>
</div>
<!-- .end .wrap -->
<div class="wrap">
<div class="content-center">
<h3>2/9 center top</h3>
<p>Your story needs to be clear. A great lasting story is about everyone or it will not last. </p>
<p><code>.slide-top and .content-center</code></p>
</div>
</div>
<!-- .end .wrap -->
<div class="wrap">
<div class="content-right">
<h3>3/9 right top</h3>
<p>Your story needs to be short. Select words carefully, each one must convey a meaning.</p>
<p><code>.slide-top and .content-right</code></p>
</div>
</div>
<!-- .end .wrap -->
</section>