Picture is shown 3 times on fancybox Edit

2019-09-16 17:12发布

I use this plugin: http://www.fancyapps.com/fancybox/

This is the url: http://estebanescoo.com.ar/fotografia.php

when you clic on any photo, and you press 'next' or 'previous' you'll notice each photo is shown 3 times, why is that?

I'll appreciate your answers :)

2条回答
混吃等死
2楼-- · 2019-09-16 17:53

its because in html the images and url are generating three times check your html or check your php file

查看更多
别忘想泡老子
3楼-- · 2019-09-16 18:03

What is happening is because you missed to close properly your <a> tags :

You have this html :

<div class="thumb"><a class="fancybox" ...><img src="{}"></div>
<div class="thumb"><a class="fancybox" ...><img src="{}"></div>
...etc.

but it should look more like :

<div class="thumb"><a class="fancybox" ...><img src="{}"></a></div>
<div class="thumb"><a class="fancybox" ...><img src="{}"></a></div>
...etc.

Validating your document helps to detect this type of syntax mistakes.

See JSFIDDLE

查看更多
登录 后发表回答