Results 1 to 3 of 3

Thread: Book Flip Slideshow - Vertical

  1. #1
    Join Date
    May 2008
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Red face Book Flip Slideshow - Vertical

    1) Script Title: Book Flip Slideshow

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex14/bookflip.htm

    3) Describe problem: It states that the slideshow can be set to either flip horizontally or vertically yet I have not managed to alter the code so that it flips vertically.

    Can someone please help me?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    There are at least two versions of this script around, probably more. In some versions the vertical capability was removed. Make sure you are using the version from the demo page here on Dynamic Drive. If you have that version, it has an area like so:

    Code:
    // 7 variables to control behavior
    	var Book_Image_Width=140;
    	var Book_Image_Height=225;
    	var Book_Border=true;
    	var Book_Border_Color="gray";
    	var Book_Speed=15;
    	var Book_NextPage_Delay=1500; //1 second=1000
    	var Book_Vertical_Turn=0;
    Change the highlighted value to 1:

    var Book_Vertical_Turn=1;

    And, of course, the width should now be set to the width of the images used, while it is the height that should now be set to twice the height of the images used +4 when it comes time to make this part:

    HTML Code:
    	<div id="Book" style="position:relative">
    		<img src="placeholder.gif" width="144" height="227">
    	</div>
    If you need more help:

    Please post a link to the page on your site that contains the problematic code so we can check it out.


    Just curious, were you able to get it to work horizontally?
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    newatthis (05-08-2008)

  4. #3
    Join Date
    May 2008
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thanks! I'll try that.
    Yes - I was able to get it to work horizontally (and if I can then anyone can......)
    Thanks again!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •