上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 97 下一页
摘要: PHP curl下载图片的方法 <pre> <?php $images = [ 'http://wx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTKPkia3rxjuBoSQ1sUSmqYXDazibuIp8p2CCialBPjeYvcNJgky9P7hmlnDKgzX91utE 阅读全文
posted @ 2019-11-14 13:01 newmiracle宇宙 阅读(1108) 评论(0) 推荐(0) 编辑
摘要: css3自定义移动端滚动条<pre>/*定义滚动条宽 高度是根据内容设置的高度决定的*/::-webkit-scrollbar{ width: 5px;} /*定义滚动条轨道 内阴影+圆角*/::-webkit-scrollbar-track{ -webkit-box-shadow: inset 0 阅读全文
posted @ 2019-11-14 13:01 newmiracle宇宙 阅读(1367) 评论(0) 推荐(0) 编辑
摘要: php判断是不是https的方法<pre> public function is_https() { if (!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off') { return true; } elseif ( 阅读全文
posted @ 2019-11-14 13:00 newmiracle宇宙 阅读(781) 评论(0) 推荐(0) 编辑
摘要: PHP获取图片每个像素点<pre> $i = imagecreatefromjpeg("test.jpg"); //图片路径 for ($x = 0; $x < imagesx($i); $x++) { for ($y = 0; $y < imagesy($i); $y++) { $rgb = im 阅读全文
posted @ 2019-11-14 13:00 newmiracle宇宙 阅读(1056) 评论(0) 推荐(0) 编辑
摘要: nginx跨域解决方案Access to Font at 'http://47.104.86.187/yinjiatoupiao2/iconfont/iconfont.woff' from origin 'http://wxserver.knowway.cn' has been blocke 改ng 阅读全文
posted @ 2019-11-14 12:59 newmiracle宇宙 阅读(548) 评论(0) 推荐(0) 编辑
摘要: PHP 导出微信公众号粉丝的方法 先 user/get 获取关注者列表 然后user/info 根据openid读取信息 以上方法认证的订阅号支持 阅读全文
posted @ 2019-11-14 12:59 newmiracle宇宙 阅读(462) 评论(0) 推荐(0) 编辑
摘要: jquery.eraser制作擦涂效果 <pre><!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta charset="utf-8" /> < 阅读全文
posted @ 2019-11-14 12:58 newmiracle宇宙 阅读(313) 评论(0) 推荐(0) 编辑
摘要: <pre><!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Document</title><style>.wrap{ position:absolute; width: 400px; border:1px solid 阅读全文
posted @ 2019-11-14 12:57 newmiracle宇宙 阅读(1158) 评论(0) 推荐(0) 编辑
摘要: CSS3解决字母不换行的方法 <pre>word-wrap: break-word;</pre> 阅读全文
posted @ 2019-11-14 12:57 newmiracle宇宙 阅读(225) 评论(0) 推荐(0) 编辑
摘要: css3 preserve-3d 的理解 <pre><!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <title>转换模块-正方体</title> <style> * { margin: 0; padding: 0; /*去 阅读全文
posted @ 2019-11-14 12:57 newmiracle宇宙 阅读(1233) 评论(0) 推荐(0) 编辑
上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 97 下一页