繁体   English   中英

jQuery Mobile中的背景图像

[英]Background-image in jQuery Mobile

我是jQuery的初学者,我有修复背景的问题,图像在1秒内出现显示

<body id="content" style="display: none;background-image:url('images/wood.jpg'); ">

您将显示设置为无,因此在1秒后您将需要将其删除。

您应该使用window.setTimeout函数。 1000毫秒= 1秒。

的setTimeout

您可以使用jQuery设置visiblity,如下所示:

$("#content").show();

所以一个完整的代码示例是:

setTimeout(function(){
 $("#content").show();
},1000)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM