我没有使用 CSS 和 JQuery 的经验。因此,我在使用我的应用程序实现 Magnific Popup 时迷失了方向。我正在使用https://github.com/joshuajansen/magnific-popup-rails。我在视图中插入的代码显示在页面本身上。我遵循了 github 上的内容,然后将代码添加到视图中。
<h1><%= @user.username %></h1>
<div class="parent-container">
$(document).ready(function() {
$('.parent-container').magnificPopup({
delegate: 'a',
type: 'image'
});
});
<% @user.photos.each do |photo| %>
<%= link_to image_tag(photo.image_url(:thumb)), photo.image_url%>
</div>
<% end %>