Skip to content

Instantly share code, notes, and snippets.

View xuanfeng's full-sized avatar

ivan xuanfeng

View GitHub Profile
@xuanfeng
xuanfeng / animal.txt
Last active August 29, 2015 14:05 — forked from edokeh/index.js
/*code is far away from bug with the animal protecting
* ┏┓   ┏┓
*┏┛┻━━━┛┻┓
*┃       ┃  
*┃   ━   ┃
*┃ ┳┛ ┗┳ ┃
*┃       ┃
*┃   ┻   ┃
*┃       ┃
*┗━┓   ┏━┛
@xuanfeng
xuanfeng / htmlDecode.js
Last active August 29, 2015 14:09
html转码
function htmlDecode(str){
return str
.replace(/'/g, '\'')
.replace(/<br\s*(\/)?\s*>/g, '\n')
.replace(/&nbsp;/g, ' ')
.replace(/&lt;/g, '<')
.replace(/&gt;/g, '>')
.replace(/&quot;/g, '"')
.replace(/&amp;/g, '&');
@xuanfeng
xuanfeng / url_analyse.js
Last active August 29, 2015 14:12
url参数
/*
* 判断URL中是否有此参数
*/
hasQueryStringRegExp: function(url, name){
var reg = new RegExp("(^|\\?|&)"+ name +"=([^&]*)(\\s|&|$)", "i");
if(reg.test(url)){
return true
}else{
return false
}
@xuanfeng
xuanfeng / timeHello.js
Last active August 29, 2015 14:13
JS按时间区间显示不同信息
// 按不同的时间段显示不同的“问好”信息,一般做法是
// if(hour>=0 && hour <=5;){
// }else if(hour>=6 && hour <=8;){
// }else if(hour>=9 && hour <=11;){}
// ...
// 这里换了一种做法,看起来相对简洁一点!
/*
Test case:
for(var i = 0,iMax = 23; i <=iMax;i++){
@xuanfeng
xuanfeng / splitSpace.js
Last active August 29, 2015 14:13
split时过滤空白
$('#Participants').val().split(';').filter(function (n) { return n != '' })
@xuanfeng
xuanfeng / regex_demo.js
Last active August 29, 2015 14:19
正则表达式记录
/* 部分替换
需求: <link href="/" rel="canonical"> 需要将href替换成data-href
解决:通过()获取某一组固定字符串,用$1表示,再进行替换
*/
var str = '<link href="/" rel="canonical"><link href="/" rel="canonical"><link data-id="" href="/" rel="canonical">';
res = str.replace(/(link.*?)href/ig, '$1data-href');
@xuanfeng
xuanfeng / bigger.js
Last active August 29, 2015 14:20
JS逼格(实用)代码-移动端
// 1. 设置变量为undefined
var UNDEFINED = void 0;
// 2. 判断支不支持touch事件
var IsTouch = 'ontouchend' in window;
// 3. 各端事件兼容
START_EVENT = IsTouch ? 'touchstart' : 'mousedown';
@xuanfeng
xuanfeng / css3Style.js
Created May 4, 2015 06:17
设置移动端transition、translate样式
// 设置动画、坐标移动样式(硬件加速、浏览器兼容、原生方式)
var CSS_PREFIX_MAP = ["webkit", "moz", "ms", "o", ""],
NUMBER_REG = /\-?[0-9]+\.?[0-9]*/g;
var setTransition = function(ele, css) {
var name, prefix, _i, _len, _results;
_results = [];
for (_i = 0, _len = CSS_PREFIX_MAP.length; _i < _len; _i++) {
prefix = CSS_PREFIX_MAP[_i];
name = prefix ? "" + prefix + "Transition" : "transition";
@xuanfeng
xuanfeng / hideWxMenu.js
Created May 26, 2015 03:46
隐藏微信右上角按钮
//隐藏微信菜单
function initWeixinBridge(){
WeixinJSBridge.call('hideOptionMenu');
}
if (typeof WeixinJSBridge == "object" &&
typeof WeixinJSBridge.invoke == "function") {
initWeixinBridge();
} else {
if (document.addEventListener) {
document.addEventListener("WeixinJSBridgeReady", initWeixinBridge, false);
@xuanfeng
xuanfeng / iLocalStorage.js
Last active August 29, 2015 14:22
LocalStorage 本地存储兼容函数
/*
* 名称:本地存储函数
* 功能:兼容各大浏览器存储
* 作者:轩枫
* 日期:2015/06/11
* 版本:V2.0
*/
/**
* LocalStorage 本地存储兼容函数