摘要:
在首选项中 设置: "jshint.enable": false, 在根目录中建立eslintrc.yml 阅读全文
摘要:
查询访问 建议搜索的关键词 --> 阅读全文
摘要:
banner .box { width: 100px; height: 50px; line-height: 50px; text-align: center; border-radius: 5px; background-color: #ccc; background-size: 0 2px; ... 阅读全文
摘要:
async-db.js const mysql = require('mysql') const pool = mysql.createPool({ host : '127.0.0.1', user : 'root', password : '123456', database : 'my_database' }) let query = functio... 阅读全文
摘要:
window.onresize = adjuest; function adjuest(){ var picw = $(".imgbox img").width(); var pich = $(".imgbox img").height(); var x1 = parseInt(picw*0.82004); // ... 阅读全文
摘要:
html js jq 节流函数:只允许一个函数在N秒内执行一次。下面是一个简单的节流函数: 去抖相比较节流函数要稍微简单一点,去抖是让函数延迟执行,而节流比去抖多了一个在一定时间内必须要执行一次。 https://zhuanlan.zhihu.com/p/25455672 https://i.jak 阅读全文
摘要:
原文:http://www.jianshu.com/p/99aeb911f547; https://segmentfault.com/a/1190000003903190 阅读全文
摘要:
var cookieUtil = { setCookie :function (cname, cvalue, exdays) { var exdate = new Date(); exdate.setDate(exdate.getDate()+exdays); var ex... 阅读全文
摘要:
Document 111111111111 22222222222222 ... 阅读全文
摘要:
# coding=utf-8 import flask app = flask.Flask(__name__) app.secret_key = 'super secret string' import flask_login from flask_login import login_required login_manager = flask_login.LoginManager(... 阅读全文