贴出一些常用的代码,方便以后自己好找,不再百度搜来搜去了。如果你是访客,也可以看看有没有用的上的,我会在不定期更新一些好用的代码在这里!
360logo图片
<meta property="og:image" content="https://www.lanin.tech/360.png"/>
网站ico图片
<link rel="shortcut icon" href="https://www.lanin.tech/favicon.ico">
字体大小颜色代码
<font size="10" color="red">编辑文本</font>
超链接代码
<a href="https://www.lanin.tech/">兰宁博客</a>
插入图片代码
<img src="图片路径" width="图片宽度" height="图片高度"/>
插入图片(页面自适应)代码
<div style="width:?"> <img src="https://lanin.tch/666.jpg" style="width:100%;height:?"/> </div>
背景图片代码
<body background="/image.gif">
调用其他网页代码
<iframe name="name" src="www.lanin.tech/1.htm" width="450" height="287" scrolling="Auto" frameborder="0">
识别到PC端自动跳转
<script type="text/javascript">
var system = {
win: false,
mac: false,
xll: false
};
var p = navigator.platform;
system.win = p.indexOf("Win") == 0;
system.mac = p.indexOf("Mac") == 0;
system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
if (system.win || system.mac || system.xll) {
window.location.href = "https://www.lanin.tech/pc.html";
} else {}
</script>
识别到手机端自动跳转
<script type="text/javascript">
var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "lg", "ucweb", "skyfire");
var browser = navigator.userAgent.toLowerCase();
var isMobile = false;
for (var i=0; i<mobileAgent.length; i++){ if (browser.indexOf(mobileAgent[i])!=-1){ isMobile = true;
//alert(mobileAgent[i]);
location.href = 'https://www.lanin.tech/wap.html';
break; } }
</script>
301跳转代码
<meta http-equiv="refresh" content="0;url=https://www.lanin.tech">
页脚版权自动更新时间代码
<script type="text/javascript">
<!-- Begin
copyright=new Date();//取得当前的日期
update=copyright.getFullYear();//取得当前的年份
document.write("Copyright@2017-"+ update + " Lanin All rights reserved. 备案号:赣ICP备18001589号");//update为自动更新的年份
// End -->
</script>
仅支持微信浏览器访问,如不是则弹出提示并关闭页面
<script type="text/javascript">
// 对浏览器的UserAgent进行正则匹配,不含有微信独有标识的则为其他浏览器
var useragent = navigator.userAgent;
if (useragent.match(/MicroMessenger/i) != 'MicroMessenger') {
// 这里警告框会阻塞当前页面继续加载
alert('非常抱歉!本页面仅支持微信内打!请使用微信客户端访问!');
// 以下代码是用javascript强行关闭当前页面
var opened = window.open('about:blank', '_self');
opened.opener = null;
opened.close();
}
</script>
防止复制和F12代码(用户登录后自动失效)
<?php
if (!is_user_logged_in()){
echo '<script type="text/Javascript">document.oncontextmenu=function(e){return false;};
document.onselectstart=function(e){return false;};</script>
<style>body{ -moz-user-select:none;}</style>
<SCRIPT LANGUAGE=javascript>if (top.location != self.location)top.location=self.location;</SCRIPT>
<noscript><iframe src=*.html></iframe></noscript>';
}
?>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END















