Problem while working with Jquery colorbox and dynamic images that reading via Aspx

前端 未结 2 621
悲哀的现实
悲哀的现实 2021-01-13 12:25

for showing full size images on my site I\'ve decided to use Jquery.colorbox , this pluging works well with static image location like :



        
2条回答
  •  悲&欢浪女
    2021-01-13 13:23

    Use colorbox's photo property. Example:

    $('a.example').colorbox({photo:true});

    The reason is that colorbox's regex to auto-detect image URLs is going to fail for that kind of URL (doesn't contain an image-type extension).

提交回复
热议问题