问题
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