常用的一些js和css
2021-06-23 13:06
标签:分享 ace hidden hang 文字 baidu lips overflow 使用 /*给一组li里面写入12345.....*/ $("li").html(function(idx){ css限制文字字数: white-space: nowrap;text-overflow: ellipsis;overflow: hidden; /*手机横屏提示*/ 另外说一些小知识点: 给页面title部位制作小图标可以去这个链接:http://www.bitbug.net/ 给页面做一些分享:例如微信二维码分享,微博分享,之类的去这个链接:http://share.baidu.com/code/ 常用的一些js和css 标签:分享 ace hidden hang 文字 baidu lips overflow 使用 原文地址:http://www.cnblogs.com/xuxinxiang/p/7161734.html
return idx+1;
})
(function rotate(){
var orientation=window.orientation;
if(orientation==90||orientation==-90){
document.body.style.display=‘none‘;
alert("请使用竖屏访问!");
}
window.onorientationchange=function(){
document.body.style.display="block";
rotate();
};
})()
上一篇:html静态页面