Petabyte
Petabyte

Reputation: 11

Jssor slider does not display slides in Chrome

I have jssor slider working well in Firefox and IE. However in Chrome the image vanishes as soon as the transition completes. Then the image reappears just as the next transition begins. How do I "tell" Chrome to display the missing slide?

Upvotes: 0

Views: 1682

Answers (3)

Travis Gershon
Travis Gershon

Reputation: 1

I have found that removing the link from the image element fixes the problem along with setting the style="position: relative;" as mentioned above.

<div>
<a u=image href="#"><img src="../img/paint/08.jpg" /></a>
</div>

to

<div>
<img src="../img/paint/08.jpg" style="position: relative;"/>
</div>

Upvotes: 0

mboron83
mboron83

Reputation: 63

Just set $HWA to false as you can see here

Upvotes: 6

Petabyte
Petabyte

Reputation: 11

I have fixed the problem by changing:

<img data-u="image" style="position: absolute;"/>

to

<img data-u="image" style="position: relative;"/>

Upvotes: 1

Related Questions