Picture is shown 3 times on fancybox Edit

前提是你 提交于 2019-12-11 16:43:37

问题


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 :)


回答1:


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




回答2:


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



来源:https://stackoverflow.com/questions/17825977/picture-is-shown-3-times-on-fancybox-edit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!