Tag: 轮播

Rails 4 – 轮播助手 – 图片库

我试图了解如何调整本教程,以制作我可以在我的Rails 4应用程序中使用的轮播助手。 https://www.toptal.com/ruby-on-rails/rails-helper-bootstrap-carousel 我帮助了: module CarouselHelper def carousel_for(images) Carousel.new(self, images).html end class Carousel def initialize(view, images) @view, @images = view, images @uid = SecureRandom.hex(6) end def html content = safe_join([indicators, slides, controls]) content_tag(:div, content, id: uid, class: ‘carousel slide’) end private attr_accessor :view, :images, :uid delegate :link_to, :content_tag, :image_tag, :safe_join, to: :view def indicators items […]