yangzailu

导航

2016年8月31日 #

点击div折叠

摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="v 阅读全文

posted @ 2016-08-31 09:00 飞离地平线 阅读(401) 评论(0) 推荐(1) 编辑

2016年8月30日 #

mysql常用命令

摘要: 显示所有数据库: show databases; 使用某个数据库: use 数据库名; 显示某个数据库的所有表 show full tables from mblogs where table_type = 'base table'; 显示数据库编码 show charset 创建表单 create table mblogs. m_linkss(id... 阅读全文

posted @ 2016-08-30 21:45 飞离地平线 阅读(473) 评论(0) 推荐(1) 编辑

script加载文件

摘要: 阅读全文

posted @ 2016-08-30 21:44 飞离地平线 阅读(256) 评论(0) 推荐(0) 编辑

鼠标滑动加载div

摘要: 阅读全文

posted @ 2016-08-30 21:29 飞离地平线 阅读(169) 评论(0) 推荐(0) 编辑

css背景图

摘要: 阅读全文

posted @ 2016-08-30 21:27 飞离地平线 阅读(165) 评论(0) 推荐(0) 编辑

模拟复选框打钩变色

摘要: new document 阅读全文

posted @ 2016-08-30 15:02 飞离地平线 阅读(208) 评论(0) 推荐(0) 编辑

快速排序

摘要: $pivot) $r--; if($l>=$r) break; $temp=$array[$l]; $array[$l]=$array[$r]; $array[$r]=$temp; if($array[$l]==$pivot) --$r; if($array[$r]==$pivot... 阅读全文

posted @ 2016-08-30 14:53 飞离地平线 阅读(305) 评论(0) 推荐(0) 编辑

css3渐变(Gradients)

摘要: http://www.runoob.com/css3/css3-gradients.html CSS3 渐变(gradients)可以让你在两个或多个指定的颜色之间显示平稳的过渡。 以前,你必须使用图像来实现这些效果。但是,通过使用 CSS3 渐变(gradients),你可以减少下载的事件和宽带的使用。此外,渐变效果的元素在放大时看起来效果更好,因为渐变(gradient)是由浏览器生成的... 阅读全文

posted @ 2016-08-30 14:51 飞离地平线 阅读(351) 评论(0) 推荐(0) 编辑

纯css的防止图片撑破页面的代码图片会自动按比例缩小

摘要: 阅读全文

posted @ 2016-08-30 14:47 飞离地平线 阅读(176) 评论(0) 推荐(0) 编辑

ajax跳转传参

摘要: 阅读全文

posted @ 2016-08-30 14:43 飞离地平线 阅读(426) 评论(0) 推荐(0) 编辑