Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fallback option in case of missing images #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

davidmccabe
Copy link

This adds a setting called fallback that is helpful when programmatically generating the name of the image to load, in case that the image might not exist. For instance, I am developing a site where most of the pages each have an individual background image. But for those pages that are missing their own image, I want to fall back to a generic image.

Here's an example from the my site:

$.anystretch("/images/background-"+slug+".jpg",
  {fallback: "/images/background-default.jpg", speed: 300});

This will load images according to the page's slug, defaulting to the fallback image if the first one doesn't exist.

It's worth considering making the fallback a callback function rather than just another image URL, as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant