问题描述
我试图让typist.js正常工作,但是我似乎很难做,因为它似乎无能为力。 这是我为使其正常工作所采取的步骤。
javascript文件夹中的typist.js
application.js
//= require typist
show.html.erb
JavaScript is <strong id="typist-element" data-typist="ugly,not as good an CoffeeScript">great</strong>
applications.css
.selectedText {
background: #f00;
}
但什么也没发生,它什么也没做。 我该如何运作?
1楼
您必须运行javascript,如文档中所述。 在咖啡脚本中:
typist = document.querySelector "#typist-element" new Typist typist, letterInterval: 60 textInterval: 3000