0

如何在中心页面中制作网站徽标 10 秒?

我试过了:

var ddsitelogo={
    setting: {orientation:4, visibleduration:30, fadeduration:[1000, 500]}, //orientation=1|2|3|4, duration=millisec or 0, fadedurations=millisecs
    offsets: {x:10, y:10},//offset of logo relative to window corner
    logoHTML: '<img src="logo_center.PNG" style="width:80px; height:40px; border:0" /></a>', //HTML for logo, which is auto wrapped in DIV w/ ID="mysitelogo"
4

1 回答 1

0

我假设如何知道如何访问您提供的 json。

/* put code here to SHOW the logo */
window.setTimeout(function() {
    /* code to HIDE the logo */
}, 10000);

最后一个参数是调用函数的毫秒数。

如果您使用的是 jQuery,则可以使用$(yourLogoSelector).hide();.

当 dom 准备好时,您应该使用 jQuery 放置上面的代码块,它是

$(document).ready(function() {
    /* dom is ready */
});

要使图像居中,您可以将样式应用于容器,请参阅http://api.jquery.com/css/

于 2013-10-16T13:08:28.593 回答