I’m changing my background-image css property using Mootools:
$(document.body).setStyle(‘background-image’,’url(‘ + pBackground + ‘)’);
And it’s its working, but how can a make one fade effect between picture change?
Thanks,
Pedro
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t fade a background specifically… you have to fade the element that has the background.
For your situation, I would suggest using a
<div>that encompasses everything in the<body>of your HTML, ie:You could then set the background-image property of the #main div, and do something like this: