• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization New - JFriend HTML5 Slideshow beta release!

FAQtoid

Ever wanted to create an Avatar? Creating an Avatar!

Searching Dgrin with Google Searching with Google

Dgrin Challenges

Congratulations to the Winner of DSS #130 (Hot or Cold), Memol..

The next Dgrin Challenge DSS #131 (Music) is open for entries through June 24th, 2013 at 8:00pm PDT.

As always, we look forward to your participation but please do take a moment to read through the rules before posting your entry.

Past DSS Challenge Winners, DSS Challenge Rules, and other important DSS Challenge information is here.

Need some help with Accessories?

Tutorials

Ever find yourself wondering just how someone managed to create an image using different effects?

Here are three simple tutorials we hope will encourage you to try something new.

The Hot Seat

A lifelong interest in landscape photography has led Eyal Oren to make a study of his adopted hometown of Marblehead, MA. As you can see, his dedication is paying off!

Africa!

Dgrinners Harryb, Pathfinder, and others joined Andy Williams and Marc Muench on Safari in East Africa recently. Here are some awesome threads to check out!

 
Thread Tools Display Modes
Page 2  of  181
1 2 3 4 5 6 12 52 102 Last »
Old Jan-22-2011, 01:47 AM
#21
peestandingup is offline peestandingup
Major grins
peestandingup's Avatar
Quote:
Originally Posted by jfriend View Post
Add this CSS:

.slideshowContainer {margin: 0 auto;}

I think I'll add that to the default CSS for the slideshow so it's centered by default.
Cool! Yeah, it might be a good idea to include it in the code to make it more foolproof.

And thanks for all of this BTW. It's lovely.
Old Jan-22-2011, 02:09 AM
#22
timparker_NikonD60 is offline timparker_NikonD60
Big grins
I thought I would give this a try as I am definately a rookie at customizing. I got the Javascript in, but steps 2 and 3 are throwing Dropbox errors. Not sure if the content moved or what might have happened.....

Thanks for all you do here. I am learning quite a bit from reading all your replies and posts!


Quote:
Originally Posted by peestandingup View Post
Cool! Yeah, it might be a good idea to include it in the code to make it more foolproof.

And thanks for all of this BTW. It's lovely.
Old Jan-22-2011, 05:42 AM
#23
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by jfriend View Post
You're trying to insert the slideshow into your bio, but the bio is not on your homepage (at least when you're logged out) so there's no place to put the slideshow. You can either enable the bio in the homepage layout button or you can change where you're putting the slideshow and use "#homepageBoxes" instead of "#userBio".
Might add a note that to enable whatever box they are putting it in especially
the biobox or album description. Could be a common error.

Also might remind them to click "email" button for backup before any changes.
Old Jan-22-2011, 06:31 AM
#24
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by Allen View Post
It's working in an unlisted gallery now. It's the source gallery being unlisted
that's in question.
I got it drawing photos from an unlisted gallery now on my homepage.
So that works now.
Old Jan-22-2011, 06:37 AM
#25
denisegoldberg is offline denisegoldberg
Major grins
denisegoldberg's Avatar
John -
Just FYI - the dropbox links are a bit flakey. I'm often getting an error (5xxx) when I click on the links. Refreshing the page usually corrects the problem.

I'm not sure that you can do anything about it, just wanted to let you know.

--- Denise
__________________
http://www.denisegoldberg.com ... http://denise.smugmug.com

Musings & ramblings at http://denisegoldberg.blogspot.com, quick posts in google+
Old Jan-22-2011, 07:55 AM
#26
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by denisegoldberg View Post
John -
Just FYI - the dropbox links are a bit flakey. I'm often getting an error (5xxx) when I click on the links. Refreshing the page usually corrects the problem.

I'm not sure that you can do anything about it, just wanted to let you know.

--- Denise
OK thanks. Dropbox must have been having system issues because I know there are people here that host flash files there and they generally seem to work for this kind of thing. I'm thinking about how to host the downloads permanently and have some other possibilities.

Edit: Yeah, I see that dropbox seems intermittent now. Works sometimes, doesn't work other times. Bummer. Hopefully they'll clean up their act in the next few hours. These are supported public links from dropbox and are supposed to work. If they don't fix it by later today, I'll find another place to host the files.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question

Last edited by jfriend; Jan-22-2011 at 09:01 AM.
Old Jan-22-2011, 08:09 AM
#27
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
I have the top overlay caption applied, can it be moved up some and the
background h/w decreased? Was also looking for a way to format the font,
size, type, color, etc.
Old Jan-22-2011, 08:13 AM
#28
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by Allen View Post
I have the top overlay caption applied, can it be moved up some and the
background h/w decreased? Was also looking for a way to format the font,
size, type, color, etc.
This piece of CSS controls the up/down position for top overlay:

Code:
.slideCaptionTop  .slideCaptionHolder {
    top: 25px;
}
I'd suggest overriding the CSS with your own CSS placed after the slideshow CSS, not editing this so that you can more easily upgrade to new versions.

The transparent overlay comes from a transparent PNG background image (so it will work in older browsers). You can supply your own and override the CSS. It's applied in this CSS:

Code:
.slideCaptionOverlay  .slideCaptionHolder {
	position: absolute;		/* has to be absolute to be on top of the image */
	left: 8.5%;
	width: 80%; 
	padding-left: 1.5%;
	padding-right: 1.5%;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #FFF; 
	overflow: hidden;
	text-shadow: 1px 1px 1px #000; 
	-webkit-border-radius: 12px; 
	-moz-border-radius: 12px; 
	-o-border-radius: 12px; 
	border-radius: 12px; 
	
	background: transparent url(http://jfriend.smugmug.com/photos/1155231379_dvqbp-O.png) repeat;
	/* no transparent background in IE6 because it looks bad, can't use filters for PNG transparency 
	   because it interacts poorly with the filter based slide transitions */
	_background: none;

	zoom: 1;
	z-index: 8;
}
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jan-22-2011, 08:48 AM
#29
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by jfriend View Post
This piece of CSS controls the up/down position for top overlay:

...

I'd suggest overriding the CSS with your own CSS placed after the slideshow CSS, not editing this so that you can more easily upgrade to new versions.

The transparent overlay comes from a transparent PNG background image (so it will work in older browsers). You can supply your own and override the CSS. It's applied in this CSS:

...
Thanks John, I didn't think about all this stuff was in your CSS group. Duh! Couldn't pick with WebDev.

More playing around here adding frame and background.
Old Jan-22-2011, 08:57 AM
#30
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by Allen View Post
Thanks John, I didn't think about all this stuff was in your CSS group. Duh! Couldn't pick with WebDev.

More playing around here adding frame and background.
I tried to put as much as possible in the CSS file so it could be customized/overridden as desired. You can temporarily set autoStart: "false" while testing to get a static slide image you can work with in web developer that isn't changing out from under you while looking at it.

If you're using more than one slideshow on your site, you may want to set the slideshow parameter cssClass on each slideshow to give your slideshows unique top level classes. You can then reference that class in your CSS so can target specific slideshows with your CSS without having to use the page level CSS to distinguish them and worry about where you put each slideshow on your site. For example, you could have a "ss-small" class for the little slideshow you have on your homepage, make any customizations for it using ss-small as a scope identifier in your CSS and then you can get all the same customizations on any other small slideshows by just setting the cssClass to ss-small.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jan-22-2011, 12:05 PM
#31
BigRed is offline BigRed
Major grins
Quote:
Originally Posted by jfriend View Post
It appears that there is no albumDescription object in the page when the gallery is empty and you're not logged in so the code can't find any place to put the slideshow. Perhaps it needs either something in the gallery description or a photo in the gallery (I'm not sure) in order to be present.
P.S. If I try to add text in the albumDescription after I've inserted the slideshow, it hangs on Save.
http://www.janicebrowne.com/SamplerS...15540925_QtGow
Old Jan-22-2011, 12:22 PM
#32
BigRed is offline BigRed
Major grins
As soon as I started testing this, I'm being forced to re-login much more frequently than usual. Any connection?
Old Jan-22-2011, 01:06 PM
#33
BigRed is offline BigRed
Major grins
John: Would you like suggestions on the documentation too, or is it too early? (I'm an editor by profession and just can't help myself -- sorry!)
Old Jan-22-2011, 04:08 PM
#34
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by BigRed View Post
As soon as I started testing this, I'm being forced to re-login much more frequently than usual. Any connection?
I think there is a connection. It happens to me too. I've filed a bug report here on a related topic and am waiting for some comment by Smugmug on it. There's also a new version of the API coming out in a little while that might let me workaround the issue.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jan-22-2011, 04:09 PM
#35
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by BigRed View Post
John: Would you like suggestions on the documentation too, or is it too early? (I'm an editor by profession and just can't help myself -- sorry!)
I know the doc is rough - not my favorite way to spend time. I'm open to suggestions. Might be best to just email them to me (via my dgrin profile) if you have thoughts.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jan-22-2011, 04:12 PM
#36
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by BigRed View Post
P.S. If I try to add text in the albumDescription after I've inserted the slideshow, it hangs on Save.
http://www.janicebrowne.com/SamplerS...15540925_QtGow
It looks like it may not be a good idea to add the slideshow to the albumDescription. Perhaps it's better to add it after the breadcrumb like this (which is generally the same position on the page):

JF.InsertSlideshow({config options}, ".gallery_xxxxx #breadcrumb", after);
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jan-22-2011, 04:39 PM
#37
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
Any thoughts on popular or keyword feeds?

The "real old" slideshow required something, anything in the bioBox to run. I
think that activates the box like you suggested. Otherwise the show will only
be seen logged in.
Old Jan-22-2011, 05:12 PM
#38
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by Allen View Post
Any thoughts on popular or keyword feeds?

The "real old" slideshow required something, anything in the bioBox to run. I
think that activates the box like you suggested. Otherwise the show will only
be seen logged in.
I don't currently support popular or keyword feeds as the API for those is completely different and I spent my time on other things.

For keyword feeds, I'd suggest making an unlisted virtual gallery based on keywords and just using the gallery URL for that. Seems like a capable substitute.

I don't currently have a replacement for the popular or recent feed.

On the empty bioBox, I'll look into that. I'm already going to change the doc to NOT recommend using the albumDescription for a slideshow in a gallery. It's better to put it after the breadcrumb (which is always present and basically the same position as the albumDescription).

There is no real need to reference the bioBox tag at all. In fact, just putting as first child of #homepageBoxes works fine and then the bioBox is free to be used (or not used) for something else. I started out referring to the bioBox just to be "like" the old custom slideshow and make it compatible with the existing galleries page code (which hides the biobox on the galleries page). But, it may make more sense to just split from it entirely. I'll think about that. This is definitely what a beta is for - getting all the recommendations and documentation tuned.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jan-22-2011, 06:55 PM
#39
peestandingup is offline peestandingup
Major grins
peestandingup's Avatar
John, do you know of a way I can have the very first photo have a transition at the start of the slide (like a simple fade up transition)?? I think this would look much more elegant than it just appearing on the screen. Thanks.
Old Jan-22-2011, 07:02 PM
#40
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by peestandingup View Post
John, do you know of a way I can have the very first photo have a transition at the start of the slide (like a simple fade up transition)?? I think this would look much more elegant than it just appearing on the screen. Thanks.
No way to do it right now via configuration, but it's on my todo list because I agree with your observation. I was thinking about making the first actual slideshow image be a short fade-in. The splash image is already a short fade-out for much the same reason.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Page 2  of  181
1 2 3 4 5 6 12 52 102 Last »
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

Posting Rules  
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump