brutaldesign / swipebox

A touchable jQuery lightbox
1.96k stars 667 forks source link

Support base64 data images #303

Open martinrotter opened 8 years ago

martinrotter commented 8 years ago

Make this work:

  <a data-remote="data:image/png;base64,base64-of-thumbnail" class="swipebox" data-gallery="multiimages" data-toggle="lightbox">
    <img src="data:image/png;base64,base64-of-full-image" />
  </a>
martinrotter commented 8 years ago

Advanced, this works:

<a href="base64-full" class="swipebox>
<img src="base64-thumb" />
</a>

Perhaps we can close this. But I would like to know other people's opinions.