auriaks
03-18-2010, 05:00 PM
Is it possible to create something like this without using flash??
HERE (http://www.filezsite.com.ar/webpato6_gris.html)
Maybe AJAX+PHP+JAVASCRIPT will do??
auriaks
03-19-2010, 02:31 PM
It seems that it is not possible :)
If you know all the using of theese scripts, just say if it is possible :)
accwebworks
03-31-2010, 09:47 PM
I don't see why not. A little of jQuery and you can accomplish same effect.
This would be done with a bunch of invisible divs that are made visible on a mouse click.
auriaks
03-31-2010, 11:11 PM
how to make invisible div to visible?
Samhain13
04-08-2010, 06:10 PM
Since accwebworks mentioned jQuery, say you have a div with an id "my-div":
// show my-div
$('#my-div').show()
// hide my-div
$('#my-div').hide()
That simple. :)