Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: [1]   Go Down

Author Topic: Fullscreen Slideshow  (Read 6774 times)

0 Members and 1 Guest are viewing this topic.

seb54000

  • Coppermine newbie
  • Offline Offline
  • Posts: 1
    • http://seb54000.cjb.net
Fullscreen Slideshow
« 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 )
Logged

kanuut

  • Coppermine newbie
  • Offline Offline
  • Posts: 11
Re: Fullscreen Slideshow
« Reply #1 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!
Logged

hyperion

  • VIP
  • Coppermine addict
  • ***
  • Offline Offline
  • Posts: 1317
  • - retired -
Re: Fullscreen Slideshow
« Reply #2 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.
Logged
"Then, Fletch," that bright creature said to him, and the voice was very kind, "let's begin with level flight . . . ."

-Richard Bach, Jonathan Livingston Seagull

(http://www.mozilla.org/products/firefox/buttons/getfirefox_small.png)

TerryG

  • Contributor
  • Coppermine novice
  • ***
  • Offline Offline
  • Posts: 45
Re: Fullscreen Slideshow
« Reply #3 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>
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: Fullscreen Slideshow
« Reply #4 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
Logged
Pages: [1]   Go Up
 

Page created in 0.037 seconds with 20 queries.