开发者

jquery & facebox image issue problem

开发者 https://www.devze.com 2023-03-28 13:14 出处:网络
i am using facebox first time but the problem is facebox dialog is showing but images is not showing for loadingImage and closeImage.

i am using facebox first time but the problem is facebox dialog is showing but images is not showing for loadingImage and closeImage.

i specify the images path like

<script language="Javascript" type="text/javascript">
$(document).ready(function () {
    $.facebox.settings.loadingImage = 'images/loading.gif';
    $.facebox.settings.closeImage = 'images/closelabel.gif';
})

$(document).ready(function () {
    $("#btnFeedback").click(function () {
        $.facebox.settings.opacity = 0.5
        jQuery.facebox('OK, you can close me now');
        return false;
    开发者_运维问答})

});

but why it is not showing. do i need to do anything extra?


You are missing a semicolon on the facebox.settings.opacity line.

Shouldn't this be:

$.facebox.settings.opacity = 0.5;

I'm not sure if this would affect the loading and close behavior though.

0

精彩评论

暂无评论...
验证码 换一张
取 消