2018年3月20日

mysql的数据库优化方案

摘要: 数据库的优化方案总结三点<1> 设计表的时候尽量使用外键关联,增加数据的关联性,适当增加一些冗余字段也可以减少级联操作,降低查询难度。<2> 使用索引,索引很好提高查询效率,我曾经测试过,50万行数据,增加索引可以提高速度将近4秒,但是增加索引也是需要代价的,索引可以提高数据的查询效率,但是数据的增 阅读全文

posted @ 2018-03-20 18:22 悦城 阅读(102) 评论(0) 推荐(0) 编辑

2018年1月2日

hadoop

摘要: 好久没有写博客了 阅读全文

posted @ 2018-01-02 18:49 悦城 阅读(79) 评论(0) 推荐(0) 编辑

2016年11月17日

今天学习css一些动画效果

摘要: <!doctype html><html lang="en"> <head> <meta charset="UTF-8"> <title>银河系</title> <link rel="stylesheet" type="text/css" href="css/xuanzhuan.css"> </he 阅读全文

posted @ 2016-11-17 22:56 悦城 阅读(155) 评论(0) 推荐(0) 编辑

2016年11月16日

写css动画

摘要: <!doctype html><html lang="en"> <head> <meta charset="UTF-8"> <link rel="icon" href="images/12.jpeg"> <title>照片墙</title> <link rel="stylesheet" type=" 阅读全文

posted @ 2016-11-16 22:39 悦城 阅读(102) 评论(0) 推荐(0) 编辑

2016年11月1日

页面有点错误没改出来

摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>今天写一个网页的导航栏</title> <link rel="stylesheet" type="text/css" href="1.css"> </head> 阅读全文

posted @ 2016-11-01 22:11 悦城 阅读(104) 评论(0) 推荐(0) 编辑

2016年10月31日

今天写了几个css属性

摘要: <!DOCTYPE html> <html> <head> <meta charset=UTF-8"> <title></title> <style> #d1{ border-width: 1px 10px 30px; border-style: solid; border-color: #999; 阅读全文

posted @ 2016-10-31 22:21 悦城 阅读(102) 评论(0) 推荐(0) 编辑

2016年10月27日

今天用css做了一个QQ登录页面

摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>今天写一些简单的页面</title> <link rel="stylesheet" style="text/css" href="d2.css"> </head> <body> < 阅读全文

posted @ 2016-10-27 22:58 悦城 阅读(669) 评论(0) 推荐(0) 编辑

2016年10月26日

学习内容

摘要: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <!-- <frameset cols=20%,20%,*> <frame><frame> <frame><f 阅读全文

posted @ 2016-10-26 23:28 悦城 阅读(113) 评论(0) 推荐(0) 编辑

学习css简单内容

摘要: Css的class,ID和上下文选择符 Class选择符。 Class选择符用来配置某一类css规则,将其应用到网页中一个或多个区域。配置一类样式时,要将选择符配置成类名。在类名前加(.)。类名必须以字母开头,可包含字母,连字符和下划线。类名不能出现空格。 下面以future为类名,配置文本字体颜色 阅读全文

posted @ 2016-10-26 07:49 悦城 阅读(214) 评论(0) 推荐(0) 编辑

2016年10月24日

开始学习css

摘要: 今天开始学习css;应用一本《HTML5与CSS3网页设计基础》 先学习css样式规则声明。 Body{ color:blue} 对应:选择符:{声明属性:声明值}; Background-color:属性 Body{ Background-color:yellow} 配置元素背景颜色css属性是B 阅读全文

posted @ 2016-10-24 23:21 悦城 阅读(126) 评论(0) 推荐(0) 编辑

导航