我正在尝试使用任何简单的 jQuery 幻灯片,其中图像和文本将动态出现。
Rails 代码是这样的:
.section
-@testimonials.each do |testimonial|
.section
.row.testimonial.round
.three.columns
=image_tag(testimonial.testifier.thumb_small.url)
.eight.columns.testimonial-description
.row.testimonial-description
%blockquote
%span(class = "bqstart") “
=testimonial.description
%span(class = "bqend") ”
.row.testifier-details
%strong="#{testimonial.name} #{testimonial.designation} #{testimonial.company}"
.one.columns
这将为我提供数据库中的图像和描述。
如果我想把这些结果放在幻灯片中,我该怎么做?