- 时间戳整理
function changeTime(time){ var str=time; var str1 =str.substr(5,2); var str2 =str.substr(8,2); return str=str1+'-'+str2; }
- 图标字体
@font-face{ font-family: 'YourWebFontName'; src: url('YourWebFontName.eot'); src: url('YourWebFontName.eot?#iefix') format('embedded-opentype'), url('YourWebFontName.woff') format('woff'), url('YourWebFontName.ttf') format('truetype'), url('YourWebFontName.svg#YourWebFontName') format('svg') } [class^='icon_'],[class*='icon_']{ font-family: SinaHomeFont; font-weight:normal; font-style:normal; /*图标字体出现锯齿 不清晰*/ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
- 模板字符串中结构判断
if (item.style.images) { 三小图的html结构 } else if (item.type == 'phvideo') { 大图的结构 } else if (item.thumbnail) { 左图右文的结构 } else { 纯文字的结构 }