tim
tim

Reputation: 203

How to create a website mockup from PNG files, I just want to add links

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

Answers (2)

Dave Newton
Dave Newton

Reputation: 160301

Use CSS to position clickable divs using absolute coordinates.

Upvotes: 2

Nick Maroulis
Nick Maroulis

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

Related Questions