Windows 边栏 - Javascript 倒计时

发布于 2024-11-03 03:55:35 字数 117 浏览 3 评论 0原文

我创建了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

¢好甜 2024-11-10 03:55:35

您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文