|
|
Thread Tools | Display Modes |
|
#821
|
||
|
Scripting dude-volunteer
|
Quote:
1) Make the images as large as they can without clipping them or causing scrolling (stretchy). 2) Scale the image large enough to fill the entire space available, clipping off the parts that overflow an edge (stretchy + superSize). Since you don't control the browser window size, you have to decide which behavior you want when the shapes don't match. In the first option, you get extra space on one size of the images. In the second option, it fills the space, but clips off some image that overflows the space. Images can only be scaled proportionally so when the space isn't the same shape, it just isn't a perfect fit. The only way you can make it look like a perfect fit is to go with a fixed size homepage (and not use stretchy and not take advantage of larger screens) where you just code in extra space in the whole design on the edges.
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
||
|
#822
|
||
|
Big grins
|
Quote:
<script type="text/javascript"> JF.InsertSlideshowHere({ galleryURL: "http://www.stevegphotography.com/Weddings/Wedding-Portfolio/10955149_Frqrk", splashImageURL: "http://www.stevegphotography.com/photos/1234530269_6WKPo-O.png", height: "496", width: "744", randomSlideStart: "true", randomSlideOrder: "true", topAlign: "center", betweenTransitionsTime: "2.0", transitionDuration: "1.0", transitionsList: "Fade"} ); </script> |
|
|
|
||
|
#823
|
||
|
Scripting dude-volunteer
|
Quote:
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
||
|
#824
|
||
|
Big grins
|
Quote:
|
|
|
|
||
|
#825
|
|
|
BobLynn
|
John... I have installed your slideshow and have tested many of the options. It's very well done and I appreciate your technical skills. I have a couple of questions that I am sure you can answer easily. First, what should be the dimensions of my banner that I will be creating in Photoshop. Second, why won't "Gallery" in my navbar go to Galleries? My link is http://robertnlynn.smugmug,com .
|
|
|
|
|
#826
|
||
|
Scripting dude-volunteer
|
Quote:
It looks to me like you haven't implemented the galleries page customization to make the /galleries work - it is not built into Smugmug. See customization #31 here.
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
||
|
#827
|
|
|
Pshots-Photography
|
Guys what is a failure in my coding for this frame on my slideshow ...
![]() please take a note from my homepage...
__________________
---------------------------------------------------- My Website : http://www.pshots-photography.com ---------------------------------------------------- |
|
|
|
|
#828
|
||
|
Scripting dude-volunteer
|
Quote:
Code:
/* position frame on top of slideshow */
#myFrame {
position: absolute;
left: 0;
right: 0;
background: transparent url("http://pshots-photography.smugmug.com/photos/1236395340_q4LCz-O.png") no-repeat;
_background: none;
_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,
sizingMethod=image, src='http://pshots-photography.smugmug.com/photos/1236395340_q4LCz-O.png');
width: 950px;
height: 634px;
z-index: 21; /* max slideshow z-index is 20 so this is on top of slideshow */
}
/* position slideshow to line up with opening in the frame */
#myFrameSlideshow {
position: relative;
left: 25px; /* size of frame border */
top: 25px; /* size of frame border */
height: 588px;
width: 900px;
}
#myFrameOuter {
position: relative;
width: 950px;
height: 634px;
margin: 0 auto;
}
#bioBox .boxBottom {padding: 0 !important;}
Then, change these parameters to your slideshow to this: height: "588", width: "900", stretchy: "false", It should look like this:
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
||
|
#829
|
||
|
Pshots-Photography
|
Quote:
Thx JohnA question : whats up when I set stretchy: "true"? Is it possible or no ?
__________________
---------------------------------------------------- My Website : http://www.pshots-photography.com ---------------------------------------------------- |
|
|
|
||
|
#830
|
|
|
Scripting dude-volunteer
|
Your frame is a fixed size, therefore the slideshow has to be a fixed size to fit exactly in the frame. Stretchy tells the slideshow NOT to be a fixed size and therefore it doesn't fit into the frame properly. Stretchy must be set to false.
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
|
#831
|
||
|
Pshots-Photography
|
Quote:
__________________
---------------------------------------------------- My Website : http://www.pshots-photography.com ---------------------------------------------------- |
|
|
|
||
|
#832
|
|
|
Scripting dude-volunteer
|
I'm sure it's possible, but not something I know how to do and not something I think can be done with just CSS - it would probably require custom programming.
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
|
#833
|
|
|
Major grins
|
Just implemented this on my site. Fantastic documentation and work! Love finally seeing my slideshows on the iphone.
Question though.... there is a shadowed transparent bounding box around the captions that stretches the almost the width of the photo. Anyway to auto-size that to fit the length of the text? Also that transparent box is even showing up when there is no caption. www.bhockensmith.com/portfolio/events |
|
|
|
|
#834
|
|
|
Big grins
|
Gallery Help
Hi,
I'm not sure if this is the right forum for this. For some reason, my galleries have changed their configuration. Now instead of the selected picture showing up on the right hand side of the thumbnails, they show up underneath and there is a big empty space on the right. Does this have anything to do with this slideshow customization? www.wesleywilliamsphotography.com Thanks Wesley |
|
|
|
|
#835
|
||
|
Scripting dude-volunteer
|
Quote:
An empty caption should not show. It looks like there is a bug there. I'll put that on the bug list and fix it. If you hide the caption background per your previous request, then that's probably a work-around for this issue too. I have not found a way to auto-size the box around the captions and still achieve the dynamic CSS layout it requires.
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
||
|
#836
|
||
|
Major grins
|
Could you refresh me on the CSS to hide the caption backgrounds?
Quote:
|
|
|
|
||
|
#837
|
||
|
Scripting dude-volunteer
|
Quote:
.slideCaptionOverlay .slideCaptionHolder {background: none;}
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
||
|
#838
|
|
|
Major grins
|
|
|
|
|
|
#839
|
|
|
Scripting dude-volunteer
|
It has to go "after the slideshow CSS" which means after all the slideshow CSS. Put it at the very end of everything. Right now, you have it at the end of your own customizations, but before the stock slideshow CSS.
__________________
--John Homepage • Popular JFriend's javascript customizations • Secrets for getting fast answers on Dgrin Always include a link to your site when posting a question |
|
|
|
|
#840
|
|
|
Major grins
|
|
|
|
|
| Tell The World! | |
| Tags | |
| advanced , custom header , flash , help me , slideshow | |
| Similar Threads | Thread Starter | Forum | Replies | Last Post | ![]() |
| JFriend HTML5 Slideshow | Linisa | SmugMug Customization | 3 | Sep-10-2011 04:57 AM | |
| JFriend Slideshow Covering up Main body and smugmug navbar | stormy315 | SmugMug Customization | 1 | Aug-15-2011 04:47 PM | |
| Clean up bio before installing JFriend HTML5 slideshow | DougG | SmugMug Customization | 6 | Jun-03-2011 12:00 PM | |
| New BETA release | onethumb | SmugMug Support | 64 | Jan-10-2007 05:14 PM | |
| Adobe Camera Raw 2.4 beta (update-full release 1/31/05) | patch29 | The Big Picture | 3 | Jan-31-2005 02:12 PM | |
| Thread Tools | |
| Display Modes | |
|
|