forum.coppermine-gallery.net

No Support => Feature requests => Topic started by: seb54000 on December 03, 2003, 01:40:30 am

Title: Fullscreen Slideshow
Post by: seb54000 on December 03, 2003, 01:40:30 am
First I have to thank you for the amazing job that have been done.

I searched the old and present forum about a fullscreen like feature but no luck...
So I throw the idea, when you click on start slideshow, why does it not display the pictures in full screen and large format ?

I don't know how hard it is to modify the code but it could be a nice feature, what do you think ?

If you'd like to see a kind of commercial implementation of a fullscreen slideshow have a look to: http://www.mandrixx.net/mjs.html (I don't work for them, hey  :P )
Title: Re: Fullscreen Slideshow
Post by: kanuut on June 14, 2004, 08:02:30 pm
Better and more slideshow-features are something i am also looking forward to.

By the way, coppermine gallery is a great piece of work, thank you very much!
Title: Re: Fullscreen Slideshow
Post by: hyperion on June 15, 2004, 12:38:04 am
If memory serves, all full screen slideshows are Java applets, which we tend to avoid like the plague due to issues that make Java applets troublesome in wide use situations. If someone wanted to make a full screen slideshow modification, we would gladly place it on the MODS board.
Title: Re: Fullscreen Slideshow
Post by: TerryG on July 08, 2004, 10:30:56 pm
You don't need any Java, really.  You can use DHTML to open up a new "full screen" window, and then display any html page within it to do the slideshow.  I've gotten this to work, but I am having trouble integrating it into the complex php environment of cpg.

Here's an HTML page with code that opens up a full screen window with no menu, or nav bars.  This is linked to a button named "slideshow" and will attempt to display the contents of the file 'do_slide_show.htm'   The do_slide_show page would loop through the images, and include the "stop slideshow" button which merely has to close its own window.

Any one else care to contribute the do_slide_show page?  ;)

Terry

==============================================================================

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<script language="JavaScript1.2">

function fullWindow(ID)
{
   var width = 100,height = 100;
   if (window.screen) {
      width = window.screen.width+20;
      height = window.screen.height+70;
   }
   
   //var QString = 'pictureID=' + ID + '&color=' + _fullColor + '&javaColor1=1&javaColor2=2&javaColor3=3';               
   
   var fullSize = window.open('do_slide_show.htm','fullView','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
   
   fullSize.resizeTo(width, height);
   fullSize.moveTo(-10, -35);
   fullSize.focus();


}   

</script>




</head>

<body>

<a href="javascript:fullWindow();">slideshow</a>

</body>
</html>
Title: Re: Fullscreen Slideshow
Post by: Joachim Müller on July 09, 2004, 07:37:43 am
hehe, it's easy to open a full-size window with JavaScript, that is not the issue. Coding a proper DHTML slideshow (cross-browser compatible) is the hard things, with image preloads, transistions and all the fancy stuff. I'm currently experimenting with alternative slideshows, but imo most of them suck for one reason or the other.
Imo hyperion is right: the best thing would be a separate applet, but I don't think anyone from the dev team will take care of this that soon.

GauGau