Gallery and Slideshow Pop-up Windows
Web template image viewer configuration
Support for Allwebco templates that include a gallery or slideshow popup window for image closeup views. The
pop-closeup.js included with your download is the Javascript file that creates the pop-ups.
See Instead…
Re-sizing the gallery pop-up windows
The gallery pop-ups are sized by the "view_width" and the "view_height". To change the window size, edit the code from the pop-closeup.js shown in the example below:
function popUp(URL,TITLE,TEXT) {
var view_width = 750
var view_height = 525
Re-sizing the slideshow window
The slideshow pop-up is sized by the "slideshow_width" and the "slideshow_height". To change the window size, edit the code from the pop-closeup.js shown in the example below:
function popUp(URL,TITLE,TEXT) {
var slideshow_width = 625
var slideshow_height = 525
Slideshow timing
You can change the time between slides in the slideshow also. Open the "slideshow.htm" in a text editor and look for the code shown below (near the top of the page):
var rotate_delay = 3000;
"3000" is a 3 second delay. You can change this to any time that you prefer.
Turn on the pop-up scrollbars
You can also turn on the scrollbars on any pop-up window. Open your "pop-closeup.js" in Notepad and search and replace "
scrollbars=0" with "
scrollbars=1". This may appear as many as 3 times depending on which template you are using. Possibly one for the Gallery pop-ups, one for the slideshow and one for the FAQ pages.
Related Topics:
Opening and editing .js files