vote up 3 vote down star

So I've got a web app that is for all intents and purposes a photo viewer.

When a thumbnail is clicked, the app

  1. requests the image asset,
  2. injects it into the DOM as an IMG tag
  3. and disposes the other

(MooTools Asset.image, inject and dispose).

If they click on an image that has already been loaded I just inject it again since dispose stores it.

Users look at the images for an average of 12 seconds (according to my stats), that's plenty of time to download a few more.

So my question again, slightly rephrased:

Is it good or bad practice to determine if I should download other assets in the background based on the movement of their mouse?

So if the mouse isn't moving, download the next few assets. If it starts moving, stop and wait for the mouse to stop (and have a little interval before starting to download again, like 1 or two seconds).

It seems like a good idea to me but it just feels like there are some secondary effects I'm not thinking about.

Gracias.

flag

What is the problem you're aiming to solve by doing that? – Craig McQueen Jun 18 at 2:01
1  
Snappier interface. If it downloads the other images in the background while the user is idle, it will instantly display when they select it, rather than wait to download it. – rpflo Jun 18 at 2:06

2 Answers

vote up 2 vote down check

To answer your question directly, I don't think there will be an issue except that checking for mouse movement will have a degree of performance overhead. I would measure the performance on a slow machine, once you are done, to see if this is a problem.

link|flag
1  
The event is fired any way... – Itay Moav Jun 19 at 22:38
Good point, so performance is unlikely to be an issue unless you happen to be doing too much in the onmousemove function. – cbp Jun 22 at 7:03
vote up 2 vote down

You might make your back and forward buttons have bigger areas (white/transparent backgrounds) and check for mouseover on those backgrounds and load the images when the cursor is on those areas. Basically load the image right before the user clicks the button.

link|flag
That's a unique idea. Can't do it without an interface overhaul since the prev/next buttons have other controls around them (and there's keyboard navigation also so I wouldn't know their finger was over the 'right' key). I'm going to mull over that concept of checking for :hover rather than mousemove. – rpflo Jun 18 at 2:37
Yeah I totally forgot about keystrokes. Maybe your company could sell them a unique keyboard that COULD tell which key their finger was hovering over just for the purpose of preloading images. ;-) – Lucas McCoy Jun 18 at 3:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.