我试图弄清楚如何用Ruby / Rails格式编写它:
<img src="images/home-dashboard.png" class="wow fadeInUp" data-wow- duration="4s" alt="">
我不确定如何处理data-wow-duration=4s
。
通常我会把第一部分写成:
<%= image_tag("home-dashboard.png", class: "wow fadeInUp") %>
但剩下的呢?如何写出整件事?
答案 0 :(得分:0)
你可以在引号中写下属性名称,
<%= image_tag("home-dashboard.png", class: "wow fadeInUp", "data-wow-duration" => "4s") %>
已经回答here