开发者

facebox rails app

开发者 https://www.devze.com 2023-03-03 05:27 出处:网络
how do I use facebox in a Rails app knowing that I already have the jquery-rails gem installed? Ne开发者_开发百科ed sample code that goes into the view as well. Thanks.Include facebox library in your

how do I use facebox in a Rails app knowing that I already have the jquery-rails gem installed? Ne开发者_开发百科ed sample code that goes into the view as well. Thanks.


Include facebox library in your application.html.erb file.

Add this code in a javascript file.

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

View

<a href="images/stairs.jpg" rel="facebox">text</a>

There are a few simple examples and some documentation on their site https://github.com/defunkt/facebox#usage.

0

精彩评论

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