Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Loading CSS background images before normal images..?


Go to End


5 Posts   7693 Views

Avatar
kevino

Community Member, 30 Posts

31 January 2010 at 4:12pm

I have a slideshow on one of my pages which is a bit of a mashup between this slideshow module: http://silverstripe.org/slideshow-module/ and a jquery random image display script.

It works quite well.

The problem I have, is loading times of the page.

According to Firebug's Net tab, the css is loaded first, then the js, then the images for the slideshow, and then finally the css refereneced background images.

Is there any way that I can make the background images load before the slideshow images, as they obviously hold visual structure of the page. It takes quite a while for all of the slideshow images to load, which therefore holds the whole site up.

Any ideas?

Avatar
hwi

Community Member, 5 Posts

1 February 2010 at 3:38pm

Hi
just a suggestion - I do not know if it works:

have you tried to include your specific css background images in your templates html - by this I mean take them in one by one with a normal img tag but with a style of display:none;
then in theory they should be loaded to the cache of the browser - so when they are called by the css with their final styling rules the browser should be aware of these files already and no need for loading them...

so something like:
<img src="/yyyy/yyyy/nav-dot.gif" style="display:none;" />
<img src="/yyyy/yyyy/leftpane-bg.gif" style="display:none;" />
and so on...
somewhere near the top of the html of your template file

Might wanna give it a try (of course if you have a lot of these this might slow you down even more)

otherwise I would guess the aproach would be to force the slideshow to wait rather than try to get the css more fast... but I am not a programmer...

Cheers

Avatar
kevino

Community Member, 30 Posts

2 February 2010 at 4:40am

Nice idea hwi. Thinking outside the box!

I'l give that a go in the meantime, but would rather get a bonefide solution to delay the ss images from loading.

Anyone have any ideas there?

K

Avatar
kevino

Community Member, 30 Posts

2 February 2010 at 1:30pm

Hm.
Unfortunately this doesn't work.

I can get the images which are used for the backgrounds to load first, which I've confirmed by leaving them visible as a test.
However, they won't display in position where the background style attribute says to untill after the slideshow images are loaded.

Anyone else have any good ideas?

:(

Avatar
ChrisBryer

Community Member, 95 Posts

2 February 2010 at 1:50pm

you could try loading the background image from a subdomain.. typically images can only load 2 at a time from one domain.