LoginSignup
1
3

More than 5 years have passed since last update.

JavaScript ライブラリ viewer.js

Posted at

viewer.js
https://github.com/fengyuanchen/viewerjs

index.html
<!-- index.html -->


<div>
 <ul id="images">
   <li><img src="picture.jpg" alt="Picture"></li>
   <li><img src="picture-2.jpg" alt="Picture 2"></li>
   <li><img src="picture-3.jpg" alt="Picture 3"></li>
    <!-- ここに必要な分だけ追加する  -->
 </ul>
</div>
app.js
var viewer = new Viewer(document.getElementById('images') );
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3