摘要:
navicat for Mysql查询数据不能直接修改 原来的sql语句: <pre> select id,name,title from table where id = 5;</pre> 修改为: <pre> select * from table where id = 5;</pre> 然后下 阅读全文
posted @ 2019-11-12 15:34
newmiracle宇宙
阅读(554)
评论(0)
推荐(0)
摘要:
html5手机端播放音效不卡的方法线下载http://wxserver.knowway.cn/solosea/js/audioEngine.js 这个是性能不错 然后直接播放音效就可以了 audioEngine.playEffect('/solosea1/music/laidian.mp3', fa 阅读全文
posted @ 2019-11-12 15:33
newmiracle宇宙
阅读(122)
评论(0)
推荐(0)
摘要:
centos安装教程1 CentOS-7-x86_64-DVD-1511.iso 这个是dvd版本2 CentOS-7-x86_64-Minimal-1511.iso 这个迷你版 是没有图形界面的 安装centos 必须要借助 光盘或者u盘 安装 因为没有exe。。不能从硬盘上安装 1 先看看bio 阅读全文
posted @ 2019-11-12 15:32
newmiracle宇宙
阅读(110)
评论(0)
推荐(0)
摘要:
CSS3 clip裁剪动画 下面是比较简单的例子<pre> <style type="text/css">img {position:absolute;clip:rect(0px 120px 151px 0px);animation: clipMe 5s linear infinite;} @-we 阅读全文
posted @ 2019-11-12 15:30
newmiracle宇宙
阅读(113)
评论(0)
推荐(0)
摘要:
CSS3 滤镜Filter亮度动画 -webkit-filter:brightness 值越高 亮度越亮<pre><!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> .im 阅读全文
posted @ 2019-11-12 15:28
newmiracle宇宙
阅读(85)
评论(0)
推荐(0)
摘要:
svg描边路径动画<pre><!DOCTYPE html><html> <head> <meta charset="UTF-8"> <style> html,body{ width:100%; height:100%; } /*1000是线条(path)的长度 stroke-dasharray和st 阅读全文
posted @ 2019-11-12 15:27
newmiracle宇宙
阅读(179)
评论(0)
推荐(0)
摘要:
CSS3自定义字体写法 ps:最好英文 中文字体太大 影响加载速度 (中文字体网上的ttf大多数是gb2312 不过页面UTF-8格式可以用 不会乱码 <meta charset="UTF-8"> 会自动转化为utf-8)<pre><!DOCTYPE html><html> <head> <meta 阅读全文
posted @ 2019-11-12 15:27
newmiracle宇宙
阅读(123)
评论(0)
推荐(0)
摘要:
Linux crontab简明demo <pre>crontab文件的一些例子: 30 21 * * * /usr/local/etc/rc.d/lighttpd restart上面的例子表示每晚的21:30重启apache。 45 4 1,10,22 * * /usr/local/etc/rc.d 阅读全文
posted @ 2019-11-12 15:26
newmiracle宇宙
阅读(99)
评论(0)
推荐(0)
摘要:
php explode容易犯的错误 <pre> $pos = strpos($v, 'Controller'); if (is_numeric($pos)) { $kongzhiqifege = explode('Controller', $v); $kongzhiqi = $kongzhiqife 阅读全文
posted @ 2019-11-12 15:25
newmiracle宇宙
阅读(78)
评论(0)
推荐(0)
摘要:
比较简单的倒影效果 <pre><div class="box-reflect"><img src="https://www.baidu.com/img/bd_logo1.png" alt="" height="200"/></div> .box-reflect { margin: 210px aut 阅读全文
posted @ 2019-11-12 15:23
newmiracle宇宙
阅读(45)
评论(0)
推荐(0)