Reputation: 203
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
Upvotes: 1
Views: 415
Reputation: 160301
Use CSS to position clickable divs using absolute coordinates.
Upvotes: 2
Reputation: 487
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>
Upvotes: 2