goat1000 / TagCanvas

HTML5 canvas-based tag cloud
243 stars 81 forks source link

Is there any examples for images instead of links, it should be better to have the code as well #10

Closed ramseyfeng closed 4 years ago

goat1000 commented 4 years ago

You only have to put your images inside the links. Here's an example:

<div id="imageLinks">
  <a href="#"><img src="img1.png"></a>
  <a href="#"><img src="img2.png"></a>
  <a href="#"><img src="img3.png"></a>
  <a href="#"><img src="img4.png"></a>
  <a href="#"><img src="img5.png"></a>
  <a href="#"><img src="img6.png"></a>
</div>
ramseyfeng commented 4 years ago

Thanks!