我使用embedly
卡片来显示我的内容。在它调用它的javascript
文件后,它将把链接变成一张embedly
卡片。
我已经部署到heroku
https://intelligent-madame-5204.herokuapp.com/
但是,当它变成嵌入卡后,我无法使用鼠标向下滚动。
我把这个javascript放在application.js中
(function(w, d){
var id='embedly-platform', n = 'script';
if (!d.getElementById(id)){
w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);};
var e = d.createElement(n); e.id = id; e.async=1;
e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js';
var s = d.getElementsByTagName(n)[0];
s.parentNode.insertBefore(e, s);
}
})(window, document);
我把这样的链接放在index.html.erb
<%= link_to "Learn More",posts.content, class: "embedly-card" %>