我試圖用base64使用colorbox圖像,但是當我單擊以在幻燈片中打開圖像時,它無法打開。我正在使用骨幹框架。如何使用colorbox與base64圖像?
<!-- html code -->
<a href="<img src="data:image/png;base64,<%= image %>"/>" title="<%= description %>">
<img src="data:image/png;base64,<%= image %>" alt="" />
</a>
//javascript code
this.$el.find('ul li > a').attr('rel', 'gallery').colorbox({
maxWidth : '80%',
maxHeight : '80%',
opacity : '0.1',
inline : true,
html : true,
loop : true,
slideshow : true,
slideshowAuto: false,
fixed : true
});
執行'colorbox'函數時''this。$ el.find('ul li> a')。length'的值是什麼? – WiredPrairie
嗨,值是2. –
我沒有注意到這一點,但我無法想象將'href'設置爲html標籤(' WiredPrairie