小笔记-解决中文乱码小问题问题 2017/05/24 | HTML5/CSS3 | WGinit | 暂无评论 | 553 views 当我们在写一些页面的时候,会时常遇到编码错误,中文乱码。常理我们会在头部加入 <meta name="content-type" content="text/html; charset=UTF-8"> 或者<meta charset="UTF-8"> 当我打开网页时,出现了中文乱码,我曾尝试删除所有的meta,问题还没解决。而把name="content-type"改成http-equiv="content-ty……
HTML5 Geolocation实现获取地理位置信息并定位(移动端) 2017/04/20 | HTML5/CSS3 | WGinit | 暂无评论 | 583 views 以下主要调用针对百度地图接口: 已封装成getLocation()函数,项目中在需要的地方直接调用即可 function getLocation(){ if (navigator.geolocation){ navigator.geolocation.getCurrentPosition(showPosition,showError); }else{ alert("浏览器不支持地理定位。"); } } //定位失败 function showError(error){ switch(……
10个不错的css hover效果 2017/02/16 | HTML5/CSS3 | WGinit | 1 条评论 | 709 views 公共部分代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>hover效果</title> <style type="text/css" media="screen"> body {margin: 0;height: 0;background-color: #F1F1F1;} .warp {width: 250px;height: 150px;background-color: #5e7c8……