Windows 边栏 - Javascript 倒计时
我创建了一个 Windows 边栏倒计时小工具,其中 BG 中有一个 PIC,在它下面有一个倒计时,完成后会显示一条短信,现在我想做的是添加一个BG 中的幻灯片(3 到 4 张图像)...所以专家请指导我。
I have created a Windows Sidebar Countdown gadget where there is a PIC in the BG and below it there's that countdown when finished it shows a text message , Now what I want to do is that I want to add a slideshow in the BG ( of 3 to 4 images) ... So experts please guide me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 javascript 中的 setTimeout 方法,每隔几秒更改正文中的背景图像。
document.body.background = "image.gif"
例如。
setTimeout('changeImage(1)',1000);
函数改变图像(i)
{
如果 i == 4 返回;
document.body.background = '图片'+i+'.gif';
setTimeout('changeImage('+(i+1)+')',1000);
中
您应该将图像 image1.gif、image2.gif 等放在与 gadget.html 相同的文件夹
You can use the setTimeout method from javascript, and after every few seconds change the background image in the body.
document.body.background = "image.gif"
eg.
setTimeout('changeImage(1)',1000);
function changeImage(i)
{
if i == 4 return;
document.body.background = 'image'+i+'.gif';
setTimeout('changeImage('+(i+1)+')',1000);
}
You should have the images image1.gif, image2.gif and so on in the same folder as your gadget.html