This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<body> | |
<style type="text/css"> | |
textarea, button, div { | |
display: inline-block; | |
vertical-align: middle; | |
margin-right:30px; | |
} | |
textarea { | |
width:500px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var tpl = '<% for(var i = 0; i < this.posts.length; i++) {' + | |
'var post = this.posts[i]; %>' + | |
'<% if(!post.expert){ %>' + | |
'<span>post is null</span>' + | |
'<% } else { %>' + | |
'<a href="#"><% post.expert %> at <% post.time %></a>' + | |
'<% } %>' + | |
'<% } %>'; | |
var data = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author 靖鸣君 | |
* @email [email protected] | |
* @description 滚动 | |
* @class Marquee | |
* @param {Object} | |
*/ | |
var Marquee = function(){ | |
this.direction = "top"; | |
this.speed = 30; |
NewerOlder