-
1. Re: How can i increase the stage height beyond 10000 px?
heathrowe Apr 27, 2013 7:11 PM (in response to hipelo)Why do you need more than 10k height?? What use case does this benefit?
Darrell
-
2. Re: How can i increase the stage height beyond 10000 px?
hipelo Apr 28, 2013 8:54 AM (in response to heathrowe)I am making a very long scrolling landing page to tell a story. I'm not using much animation but I need more than 10k in height for the stage. I would like to find out if and how that is possible and if there is a performance reason that edge limits the stage height to 10k px.
-
3. Re: How can i increase the stage height beyond 10000 px?
heathrowe Apr 28, 2013 10:45 AM (in response to hipelo)Then you may want to resort to a Text element with the Overflow option set to 'Scroll'.
Darrell
-
4. Re: How can i increase the stage height beyond 10000 px?
hipelo Apr 28, 2013 4:53 PM (in response to heathrowe)Thanks. It's a bit of a clunky solution but it works. I will see if the stage background continues past the 10k limit. If not I guess I'll have to put another Div below to make it all look seemless.
I have tried to edit the edge.js file to increase the limit but it doesn't seem to work.
-
5. Re: How can i increase the stage height beyond 10000 px?
Departure Jun 25, 2014 7:37 PM (in response to heathrowe)Hi Heathrowe
I would like to know if your suggestion also applies to a Horizontal slideshow "Width larger than 10,000px". I have tried to set the overflow of the div to scroll, but it still scrolls up to 10,000px.
//---imagine i have a photo 200px by 10000px and it represents the whole panaroma
sym.$("photo").css({
left : 0,
overflow: "scroll",
height : $(window).height(), //----Adjusting photos height to window's height
width : $(window).height()*10000/200, //---scaling the width relative to the new height
})
-
6. Re: How can i increase the stage height beyond 10000 px?
heathrowe Jun 26, 2014 4:59 PM (in response to Departure)Hi departure, apologies for missing this one.
I am trying to visualize your scenerio - are you referring to a single image at 10000 width, or a collection of images, as a slideshow that scrolls to the width of 10000.
Do you have sample, even by way of an external plugin for me to checkout, that best describes it.
Darrell
-
7. Re: How can i increase the stage height beyond 10000 px?
Departure Jun 27, 2014 4:04 PM (in response to heathrowe)Here is the link to what i have so far. I was able to solve some problems along the road. I am dynamically placing individual pics next to each other in respond to windows resize. Main Div wraps all the images and its width is equal the sum of all widths. Stage width is 1024. My current problems are:
1 - Although I was able to activate the scroll bar, Swiping is not available on touch devices. I thought scroll bars automatically respond to user swipes
2 - I cant get rid of the vertical scroll bar. I tried to set the css value of overflowY: "hidden". It throws a syntax error when I type it as overflow-Y. I am interested to calculate the scroll height and correct my div-height though.
3 - In Firefox I get 2 vertical scroll bars



