2014-05-28 12:22:02 +02:00

25 lines
590 B
Plaintext

%h2 Dernières images
#index_images
-@index_images.each do |img|
=link_to image_tag(img.photo.square.url), portfolio_path(:id => img.portfolios.first.slug, :page => img.page(img.portfolios.first))
%p{:style => "clear:both;height:2px;"}
:javascript
function size_index_images(){
width = $('#index_images').width();
columns = Math.ceil(width/200 * 1);
max_width = Math.floor((width-(columns*8))/columns);
$('#index_images img').css("width", max_width+"px");
};
size_index_images();
$(window).bind('resize',function(){
size_index_images();
});