是否可以在 ruby on rails 下的浏览器中读取文件内容并逐行显示它。它应该显示为正在播放视频。
问问题
160 次
1 回答
1
你的意思是在这样的html页面中显示原始文件内容吗https://raw.github.com/intridea/oauth2/master/lib/oauth2.rb
并且每一行都由超链接包裹,如果你这么说,这是可能的
使用js解决方案
(function($) {
$.fn.typewriter = function() {
this.each(function() {
var $ele = $(this), str = $ele.html(), progress = 0;
$ele.html('');
var timer = setInterval(function() {
var current = str.substr(progress, 1);
if (current == '<') {
progress = str.indexOf('>', progress) + 1;
} else {
progress++;
}
$ele.html(str.substring(0, progress) + (progress & 1 ? '_' : ''));
if (progress >= str.length) {
clearInterval(timer);
}
}, 75);
});
return this;
};
})(jQuery);
在你的 index.html.erb
<body>
<div id="code" style='display:none'>
<%= File.open("#{full_path}").readlines.join("<br/>") %>
</div>
<script> $('#code'). typewriter() </script>
</body>
你可以把你的CSS放在代码元素上
于 2012-12-11T05:16:13.467 回答