簡體   English   中英

jQuery Facebox插件不起作用

[英]Jquery Facebox plugin doesn't work

我從famspam.com/facebox下載了facebox。 然后我將facebox.js添加到public / javascripts文件夾中,並將facebox.css添加到public / stylesheets中

然后,在原始Jquery庫版本1.4之后,我將此文件包含在application.html.erb中

最后,我為href標簽設置了rel屬性,以嘗試使用Facebox,但該屬性沒有出現。 單擊帶有rel="facebox"的鏈接時,我僅在當前瀏覽器選項卡中看到一張圖片。

請幫我使用Facebox。

您是否在onLoad上調用facebox()?

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox() 
})

另外,您需要設置圖像在哪里(關閉圖像和加載圖像)

$(document).ready(function() {
$.facebox.settings.closeImage ='http://www.yoursite.com/functions/closelabel.png'
$.facebox.settings.loadingImage = 'http://www.yoursite.com/functions/loading.gif'
$('a[rel*=facebox]').facebox();   
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM