reveal.js icon indicating copy to clipboard operation
reveal.js copied to clipboard

Advancing into slide fragment render removes clickability from floated image

Open reagle opened this issue 2 years ago • 0 comments

I have a slide where an image is floated to the left, and then a "fragment" list is revealed upon advance. The problem: the image is hyperlinked, and once I advance into the fragment, the image can no longer be clicked.

<h2 class="img_left">Left float w/ fragment list</h2>
<p><a href="https://www.flickr.com/photos/hades2k/7001927337/" title="The Cathedral &amp; The Bazaar by Hades2k, on Flickr"><img data-src="https://farm8.staticflickr.com/7276/7001927337_f1b079b8a2.jpg" alt="The Cathedral &amp; The Bazaar"></a></p>
<div class="fragment">
<ul>
<li>Plenty season beyond by hardly giving of.</li>
<li>Outward general passage another as it.</li>
</ul>
<p><a href="">⚠bug</a>: the image is no longer clickable after the fragment is revealed.</p>
</div>
</section>
section.img_left img, section.img_left figure {
    float: left; margin-right: 40px; }

reagle avatar Mar 10 '22 17:03 reagle