PHP 获取小程序openID
PHP 获取小程序openID
$appid = '';$secret = $this->app;$code = $_REQUEST["code"];$url = 'https://api.weixin.qq.com/sns/jscode2session?appid=' . $appid . '&secret=' . $secret . '&js_code=' . $code . '&grant_type=authorization_code';$curl = curl_init();curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);curl_setopt($curl, CURLOPT_TIMEOUT, 500);// To ensure communication security,all api use https,so need use two line code to open ss ...
Nginx负载均衡配置
Nginx 负载均衡配置
upstream hcon.com { server localhost:8081 weight=10; server localhost:8082 weight=2; server localhost:8083;}server { listen 80; server_name localhost; location / { proxy_pass http://hcon.com }}
微信小程序 兼容用户拒绝获取位置权限 用户拒绝权限处理
微信小程序 兼容用户拒绝获取位置权限 用户拒绝权限处理
function getAuthor() { wx.getSetting({ success(res) { if (!res.authSetting['scope.userLocation']) { wx.openSetting({ success: (res) =>{ console.log(res) if (!res.authSetting['scope.userLocation']) { wx.showModal({ title: '温馨提醒', content: '需要获取您的地理位置才能使用小程序', cancelText: '不使用', ...
JS判断设备 检查手机系统 检测系统
JS 判断设备 检查手机系统 检测系统
if ( /AppleWebKit.*Mobile/i.test(navigator.userAgent) || /MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test( navigator.userAgent )) { if (window.location.href.indexOf("?mobile") < 0) { try { if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) { window.location.href = "../m/index.html"; } else if (/iPad/i. ...
响应式viewport meta标签配置
响应式viewport meta标签配置
<meta name="viewport" content="width=device-width, initial-scale=1.0">
width:控制 viewport 的大小,可以指定的一个值,如果 600,或者特殊的值,如 –
device-width 为设备的宽度(单位为缩放为 100% 时的 CSS 的像素)。
height:和 width 相对应,指定高度。
initial-scale:初始缩放比例,也即是当页面第一次 load 的时候缩放比例。
maximum-scale:允许用户缩放到的最大比例。
minimum-scale:允许用户缩放到的最小比例。
user-scalable:用户是否可以手动缩放。
pageX clientX screenX 区别
pageX clientX screenX 区别
screen X screenY 是以我们的电脑屏幕 为基准点测量
pageX pageY 以我们的 文档 (绝对定位) 的基准点 对齐 ie678 不认识
clientX clientY 以 可视区域 为基准点 类似于 固定定位
copyright
Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)