首页
电脑工具
安卓工具
技术文章
资源分享
中文编程
其它资料
登录
搜索
登录
搜索
435000
累计撰写
382
篇文章
累计收到
0
条评论
首页
栏目
首页
电脑工具
安卓工具
技术文章
资源分享
中文编程
其它资料
登录
包含标签 【HTML】 的文章
2025-3-27
转载:怎么把一整个网页(包括图片)都变成黑白的
针对于不同的浏览器要有不同的css 使用方法: 第一情况:把下面代码复制到你网页的中就可以了实现 第二情况:如果你的站已有CSS,那加入 html { filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); } 就可以了 第三情况:如果你的CSS中已有BODY {}那么你就加入 fi...
2025年-3月-27日
12 阅读
0 评论
技术文章
2025-3-26
限制网页只能从移动手机端打开不能从电脑浏览器打开(转)
var system = {}; var p = navigator.platform; var u = navigator.userAgent; system.win = p.indexOf(Win) == 0; system.mac = p.indexOf(Mac) == 0; system.x11 = (p == X11) || (p.in...
2025年-3月-26日
3 阅读
0 评论
技术文章
2025-3-26
TV直接提取的跳转代码
var system = {win:false,mac:false,x11:false}; var p = navigator.platform; system.win = p.indexOf(Win) == 0; system.mac = p.indexOf(Mac) == 0; system.x11 = (p == X11) || (p.indexOf...
2025年-3月-26日
3 阅读
0 评论
技术文章
2025-3-26
首页跳转代码
页面定期刷新,如果加url的,则会重新定向到指定的网页,content后面跟的是时间(单位秒),把这句话加到指定网页的里 一般也用在实时性很强的应用中,需要定期刷新的 如新闻页面,论坛等,不过一般不会用这个,都用新的技术比如ajax等 meta http-equiv=refresh content=0; url= 经过一段时间转到另外某个页面 cont...
2025年-3月-26日
4 阅读
0 评论
技术文章
2025-3-26
html页面弹出密码框
function init() { var yanzhengma = window.prompt(输入访问口令, ); if( yanzhengma == 123 ) { location.href = /index.html; return true; } else { alert(密码错误,重新输入&qu...
2025年-3月-26日
3 阅读
0 评论
技术文章
2025-3-26
让网页在打开几秒之后就转向其它的页面
http://www.xxinn.cn/web/338.html 有些朋友需要打开网页几秒后就转向到别的页面,那么就需要下面的功能。 只要加入以下的代码就可以实现。 第一种方法:使用Meta Meta http-equiv=Refresh Content=30 Meta http-equiv=Refresh Content=5; Url=http:/...
2025年-3月-26日
2 阅读
0 评论
技术文章