视频宽高自适应
<script type="text/javascript">
var iframe = document.getElementsByTagName("iframe");
var num = iframe.length;
for (; num > 0; num--) {
iframe[num - 1].style.height = iframe[num - 1].scrollWidth * 0.5625 + "px";
}
// .style.height = document.getElementsByTagName("iframe")[0].scrollWidth * 0.5625 + "px";16:9
</script>
实例演示:《偶像大师 百万现场 》TV动画化决定
时钟
<script type="text/javascript">
function checkTime(num) {
if (num < 10) num = "0" + num;
return num;
}
function nowTime() {
var date = new Date();
var h = date.getHours();
var m = date.getMinutes();
var s = date.getSeconds();
m = checkTime(m);
s = checkTime(s);
document.getElementById("nowtime").innerHTML = h + ":" + m + ":" + s;
setTimeout(() => {
nowTime();
}, 1000);
}
</script>
<div id="nowtime" style="width: 50px;background-color: rgb(0, 0, 0);color: rgb(255, 255, 255);">nowtime</div>
<style onload="nowTime()"></style>
sh备份脚本
#!/bin/sh
rm /root/back/test_$(date -d"7 day ago" +%Y%m%d).tar.gz
rm /root/back/test_$(date -d"7 day ago" +%Y%m%d).sql
#删除七天前的备份文件
tar --exclude /root/back -zcvf test_$(date +%Y%m%d).tar.gz /root/test
#打包test文件夹,并且忽略里面的back文件夹
mv test_$(date +%Y%m%d).tar.gz /root/back
#将打包的文件移动到back文件夹
mysqldump -u root -ppassword -e test > test_$(date +%Y%m%d).sql
#备份test数据库,-p后不能有空格
mv test_$(date +%Y%m%d).sql /root/back
#移动备份文件移动到back文件夹
配合Ubuntu 定时执行sh脚本食用更佳
全站黑白CSS
html {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
filter: gray
}
附加CSS
img.post-pwd { margin: auto;
height: auto;
width: 300px;
}
//文章密码界面图片位置大小修复
article p {
text-indent: 2em;
text-align:justify;
}
//首行缩进2字符
//正文两端对齐
p.form-submit {
text-indent: 0em;
}
//评论按钮位置修复
* {
word-wrap : break-word ;
word-break : break-all ;
}
//强制换行 解决文章排版问题
© 版权声明
THE END
暂无评论内容