1

I have a couple of PNG Files from Fireworks and simply want to do a MockUp where I can set Links on the Images in order to load the next image. I have something in mind I think it was a JS or jQuery script but I dont remember it.

Thanks for any help

tim
  • 203
  • 1
  • 2
  • 7

2 Answers2

2

Back in the day I used to use image maps

If you are not a coder make seperate html pages for each image

<a href="/path to next image">
<img src="/path to current image"/>
</a>
Nick Maroulis
  • 486
  • 9
  • 28
2

Use CSS to position clickable divs using absolute coordinates.

Dave Newton
  • 158,873
  • 26
  • 254
  • 302