KrazyEnglishman Posted April 18, 2007 Share Posted April 18, 2007 Hi, i ran across this site - http://cutephp.com/ And liked the idea of being able to zoom into the screenshots and click them back again, love the animation. can anyone tell me what script it uses? as i would love to implement it into my site. thanks. Link to comment https://forums.phpfreaks.com/topic/47564-script-help-can-you-identify-this/ Share on other sites More sharing options...
AndyB Posted April 18, 2007 Share Posted April 18, 2007 If you view the source of that page, you'll see the 'zoom' is handled by javascript Link to comment https://forums.phpfreaks.com/topic/47564-script-help-can-you-identify-this/#findComment-232198 Share on other sites More sharing options...
monk.e.boy Posted April 18, 2007 Share Posted April 18, 2007 http://mootools.net/ monk.e.boy Link to comment https://forums.phpfreaks.com/topic/47564-script-help-can-you-identify-this/#findComment-232201 Share on other sites More sharing options...
rcorlew Posted April 18, 2007 Share Posted April 18, 2007 It is using a form of css and javascript. Here is a sample of what it can look like and you can play around with it. <div id="MENU" style="position:relative; width:480px; text-align:center; background-color:#c9cfcb; color:#333633; cursor:hand" onclick="document.getElementById('ITEMS').style.visibility='visible'" ondblclick="document.getElementById('ITEMS').style.visibility='hidden'"> <b>Click Here For Picture Zoom</b> </div> <div id="ITEMS" style="position:absolute; visibility:hidden; width:480px; text-align:center; background-color:#DEB887; color:#FFFFFF" onmouseover="this.style.visibility='visible'" onmouseout="this.style.visibility='hidden'"> <div style="background-color:#f6ebd7; color:#333633;" mouseover="this.style.backgroundColor='#f6ebd7'"> This is the layer that would be visible on click. You would put a img src= here and make the layer the <div> the same size as the pic. You would also have to change cursor to whatever clever item you would like </div> </div> Link to comment https://forums.phpfreaks.com/topic/47564-script-help-can-you-identify-this/#findComment-232202 Share on other sites More sharing options...
KrazyEnglishman Posted April 19, 2007 Author Share Posted April 19, 2007 thank you, i'll have a mess around with it Link to comment https://forums.phpfreaks.com/topic/47564-script-help-can-you-identify-this/#findComment-233196 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.