<SPAN style="FONT-SIZE: medium"><% images = attachments.select { |a| a.image? } %> <% unless images.empty? %> <div class='images'> <% images.each do |attachment| %> <%= link_to image_tag(url_for({:controller => 'attachments', :action => 'show', :id => attachment, :filename => attachment.filename })), {:controller => 'attachments', :action => 'show', :id => attachment, :filename => attachment.filename }, :class => 'lightbox', :rel => 'attachments', :title => "#{attachment.filename}#{ ('-' + attachment.description) unless attachment.description.blank? }" %> <% end -%> </div> <% end -%></SPAN>
<SPAN style="FONT-SIZE: medium"><% images = attachments.select { |a| a.image? } %> <% unless images.empty? %> <div class='images'> <% images.each do |attachment| %> <%= link_to image_tag(url_for({:controller => 'attachments', :action => 'show', :id => attachment, :filename => attachment.filename }), :width => '180'), {:controller => 'attachments', :action => 'show', :id => attachment, :filename => attachment.filename }, :class => 'lightbox', :rel => 'attachments', :title => "#{attachment.filename}#{ ('-' + attachment.description) unless attachment.description.blank? }" %> <% end -%> </div> <% end -%></SPAN>多了一个参数“width => '180'”180就是你设置的图片宽度
推荐 第一个:全图显示。第二种:预览图片,小图延伸失真,大图变小看不清,亦需新窗口打开。