1
我正在爲朋友建立一個攝影網站,她希望能夠上傳,編輯和刪除圖像。 在localhost上一切正常,但我注意到,當我編輯圖像時,它改變位置併成爲最後一個。有誰知道爲什麼發生這種情況,或者可以告訴我如何從創建日期後對圖像進行排序?Rails:更新後的圖像更改位置
index.html.erb:
<section class='container'>
<article id='gallery'>
<% PreviewPicture.all.each do |preview_picture| %>
<a class="fancybox" rel="group" href="<%= preview_picture.picture.image.url(:original)%>" ><%= image_tag preview_picture.image.url(:original), :class => 'grayscale' %></a>
<% if user_signed_in? %>
<%= link_to "Delete #{preview_picture.id}", preview_picture_path(:id => preview_picture.id), method: :delete %>
<%= link_to "Edit #{preview_picture.id}", edit_preview_picture_path(:id => preview_picture.id) %>
<% end %>
<% end %>
</article>
</section>
<% if user_signed_in? %>
<%= link_to "Add Picture", new_preview_picture_path, :class => "add_preview_picture" %>
<% end %>
gallery.css:
section.container {
margin-top: 100px;
text-align: center;
width: 69%;
}
img.grayscale{
margin: 1.5px 0px;
filter: grayscale(100%);
-webkit-filter: grayscale(100%); /* For Webkit browsers */
filter: gray; /* For IE 6 - 9 */
}
img.grayscale:hover{
filter: grayscale(0%);
-webkit-filter: grayscale(0%);
filter: none;
}
你能解釋downvote嗎? – phillyslick 2015-04-05 19:36:39
這不是我把downvote ..我剛剛看到你的答案!它看起來不錯,我會試着知道。非常感謝你:) – ellen 2015-04-06 16:21:51
謝謝!那解決了我的問題:) – ellen 2015-04-06 16:46:48