01 2019 档案

webpack入门
摘要:1. 从Maven模板创建Web项目 您可以通过使用Maven的maven-archetype-webapp模板来创建一个快速启动Java Web应用程序的项目。在终端(* UNIX或Mac)或命令提示符(Windows)中,导航至您想要创建项目的文件夹。 键入以下命令: 具体示例 : 新的Web项 阅读全文
posted @ 2019-01-26 22:57 0C° 阅读(198) 评论(0) 推荐(0)
如何在git上创建的本地仓库
摘要:一、安装git(在git) 二、 三、输入个人信息(代码提交者) git config --global user.name "xxxx" git config --global user.email xxxxx@qq.com 四、在本地项目目录创建本地仓库 git init 输入命令后项目目录会有 阅读全文
posted @ 2019-01-19 02:22 0C° 阅读(430) 评论(0) 推荐(0)
personal的制作
摘要:<style> .personal{ float: right; height: 40px; line-height: 40px; width: 200px; } .personal dt,.personal dd{ float: left; } .personnal s{ position: re 阅读全文
posted @ 2019-01-17 21:07 0C° 阅读(128) 评论(0) 推荐(0)
Logo的制作
摘要:<style> header { width: 1300px; height: 100px; /* background-color: pink; */ margin: 0 auto; padding-top: 30px;}.logo { width: 195px; height: 42px; /* 阅读全文
posted @ 2019-01-17 20:36 0C° 阅读(110) 评论(0) 推荐(0)
search的 制作
摘要:<meta charset="utf-8"> <title>search的制作</title> <style type="text/css"> .search{ width: 410px; height: ; background-color: purple; float: left; margin 阅读全文
posted @ 2019-01-17 20:33 0C° 阅读(140) 评论(0) 推荐(0)
vmware如何安装ubuntu
摘要:一、安装vamware 二、新建虚拟机 三、安装虚拟机的镜像文件 三、正式安装ubuntu 可能会出现的问题有: 下面为百度上的方法: 敲重点: 倘若按照网上的方法:关机重启按F2无法进入BIOS。则参考以下方法: 如果打开虚拟机,出现以下问题: 则进入虚拟机的编辑》设备》开启全局打印功能 阅读全文
posted @ 2019-01-16 20:55 0C° 阅读(278) 评论(0) 推荐(0)
Vue的新启之笔
摘要:之前就有接触Vue这一语言,作为一个摊薄饼的我,觉得其基础性的知识体系与其他语言是相通的。且由于贵阳这一城市的地理位置的特殊性,我不得不承认想要从事软件开发这一行业,不精通一门语言不行。因为,任何一家企业,它不会给与你时间让你慢慢成长。特别是对于互联网软件开发的中小型企业的工作人员。开发周期短暂、投 阅读全文
posted @ 2019-01-16 06:08 0C° 阅读(102) 评论(0) 推荐(0)
项目管理
摘要:安排:(12天) 1-2:项目概述,搭建开发环境、主页设计、持久层和表现层设计 3-6:项目业务开发(区域--分区--定去--配送)——整个项目为基础配置,取派,中转,路由,报表 6-8:权限控制:shiro(框架)、apche(专门的前沿框架) 9-11:工作流开发:activti; 12:项目总 阅读全文
posted @ 2019-01-12 20:12 0C° 阅读(149) 评论(0) 推荐(0)
事件操作
摘要: 阅读全文
posted @ 2019-01-12 15:55 0C° 阅读(125) 评论(0) 推荐(0)
DOM
摘要: 阅读全文
posted @ 2019-01-11 17:18 0C° 阅读(156) 评论(0) 推荐(0)
函数声明与应用
摘要:<!DOCTYPE html><html><head> <title></title></head><body> <script> table();//此处为首次调用 table();//此处为第二次调用 function table(){//此处将下面的代码封装成函数 document.write 阅读全文
posted @ 2019-01-10 21:48 0C° 阅读(114) 评论(0) 推荐(0)
运算符和流程控
摘要: 阅读全文
posted @ 2019-01-10 20:07 0C° 阅读(150) 评论(0) 推荐(0)
常规选择器
摘要:1、简单选择器 #box{ #使用ID选择器的css规则 color:red; #将ID为box的元素字体颜色变红 } 在jquery中,如下方式可获得相同的结果: $('#box').css('color','red'); //元素选择器,返回多个元素 $('#box').css('color', 阅读全文
posted @ 2019-01-10 19:09 0C° 阅读(149) 评论(0) 推荐(0)
表格的制作
摘要:<!DOCTYPE html><html><head> <title></title></head><body> <script type="text/javascript"> document.write('<table border="1" width="800" align="center"> 阅读全文
posted @ 2019-01-10 17:42 0C° 阅读(163) 评论(0) 推荐(0)
流程控制
摘要:流程控制 1、顺序结构 条件结构——分支结构——选择结构 1)单路分支 if(bool){ } 2)双路分支 if(bool){ }else{ } 3)多路分支 if(bool){ //用于范围 }else if(){ .... }else{ } } switch(变量1){ //用于单个匹配 ca 阅读全文
posted @ 2019-01-10 17:12 0C° 阅读(107) 评论(0) 推荐(0)
For循环
摘要:for循环 利用for循环制作乘法表 代码如下: <script type="text/javascript"> for( var i=1;i<10;i++){ for( var j=1;j<10;j++){ //var i=1;为定义i的值 document.write(j+"x"+i+"="+( 阅读全文
posted @ 2019-01-10 16:49 0C° 阅读(105) 评论(0) 推荐(0)
购物车
摘要: 阅读全文
posted @ 2019-01-08 20:40 0C° 阅读(79) 评论(0) 推荐(0)
儿童商城
摘要: 阅读全文
posted @ 2019-01-08 20:27 0C° 阅读(100) 评论(0) 推荐(0)
宠物网
摘要: 阅读全文
posted @ 2019-01-08 20:26 0C° 阅读(160) 评论(0) 推荐(0)
小游戏——超级玛丽的基本代码
摘要:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title></title> <!-- 引入css --> <link rel="stylesheet" type="text/css" href="Mario.css" rel="stylesh 阅读全文
posted @ 2019-01-08 20:23 0C° 阅读(11948) 评论(0) 推荐(0)
递归对象
摘要: 阅读全文
posted @ 2019-01-08 20:15 0C° 阅读(152) 评论(0) 推荐(0)
运算符
摘要: 阅读全文
posted @ 2019-01-08 20:14 0C° 阅读(104) 评论(0) 推荐(0)
输出文本
摘要: 阅读全文
posted @ 2019-01-08 20:13 0C° 阅读(107) 评论(0) 推荐(0)
移位运算
摘要: 阅读全文
posted @ 2019-01-08 20:12 0C° 阅读(97) 评论(0) 推荐(0)
数据类型
摘要:注意:此处未添加<meta charset="utf-8"> 阅读全文
posted @ 2019-01-08 20:09 0C° 阅读(98) 评论(0) 推荐(0)
改变html元素
摘要: 阅读全文
posted @ 2019-01-08 20:03 0C° 阅读(116) 评论(0) 推荐(0)
外部javascript
摘要: 阅读全文
posted @ 2019-01-08 20:02 0C° 阅读(92) 评论(0) 推荐(0)
声明变量
摘要: 阅读全文
posted @ 2019-01-08 20:01 0C° 阅读(116) 评论(0) 推荐(0)
函数调用01
摘要: 阅读全文
posted @ 2019-01-08 20:00 0C° 阅读(104) 评论(0) 推荐(0)
函数调用
摘要: 阅读全文
posted @ 2019-01-08 19:58 0C° 阅读(116) 评论(0) 推荐(0)
if-else语句
摘要: 阅读全文
posted @ 2019-01-08 19:57 0C° 阅读(136) 评论(0) 推荐(0)
if语句
摘要: 阅读全文
posted @ 2019-01-08 19:57 0C° 阅读(118) 评论(0) 推荐(0)
三大流程
摘要:<!DOCTYPE html><html><head> <title>三大流程</title></head><script type="text/javascript"> /*1、单分支 基本语法 */ /*2、多分支 基本语法 if(条件语法1){ //执行 } else{ 执行 }*/if(se 阅读全文
posted @ 2019-01-08 19:55 0C° 阅读(129) 评论(0) 推荐(0)
一维数组
摘要: 阅读全文
posted @ 2019-01-08 19:55 0C° 阅读(107) 评论(0) 推荐(0)
for循环
摘要: 阅读全文
posted @ 2019-01-08 19:51 0C° 阅读(120) 评论(0) 推荐(0)
canvas简介
摘要:<!DOCTYPE html><html><head> <title>canvas介绍</title></head><body><canvas width="600"height="600" style="background:yellow">你的浏览器当前不支持canvas标签</canvas> 阅读全文
posted @ 2019-01-08 19:49 0C° 阅读(175) 评论(0) 推荐(0)
时钟
摘要:<!DOCTYPE html><html><head> <title>时钟</title> </head><body> <canvas id="clock" width="600"height="600">你的浏览器不支持canvas标签,无法看到时钟</canvas> <script> var c 阅读全文
posted @ 2019-01-08 19:49 0C° 阅读(150) 评论(0) 推荐(0)
奥运汽车
摘要: 阅读全文
posted @ 2019-01-08 19:46 0C° 阅读(81) 评论(0) 推荐(0)
奥运
摘要: 阅读全文
posted @ 2019-01-08 19:42 0C° 阅读(89) 评论(0) 推荐(0)
电子产品
摘要: 阅读全文
posted @ 2019-01-08 19:17 0C° 阅读(106) 评论(0) 推荐(0)
个人网站
摘要:index.html index.css 总结:1、搭建框架时可以由上到下,也可以先搭大体框架在填充内容 阅读全文
posted @ 2019-01-08 19:15 0C° 阅读(118) 评论(0) 推荐(0)
前端后台制作
摘要:2、栏目管理 3、登录页面 4、秒杀系统 阅读全文
posted @ 2019-01-08 19:10 0C° 阅读(161) 评论(0) 推荐(0)
Spring框架入门
摘要:1.1编写流程 01:导入jar包: 02:编写目标类:dao和service 03:spring配置文件 Ioc:<bean id=”” class=””> DI:<bean> <property name=”” value=”” ref=””> 实例化方式: 默认构造: 静态工厂:<bean i 阅读全文
posted @ 2019-01-08 18:49 0C° 阅读(98) 评论(0) 推荐(0)
viewport
摘要: 阅读全文
posted @ 2019-01-08 18:45 0C° 阅读(113) 评论(0) 推荐(0)
移动Web制作——JD案例
摘要:1、制作base.css 2、制作index.html 此时会考虑页面的流式布局 3、制作index.css 总结: 1、页面制作时应注意流式布局,各版本的兼容性。 2、页面的大体组成主要有:轮播图、商品盒子、导航栏、点击高亮、以及秒杀界面等 3、流式布局的重点 <meta name="viewpo 阅读全文
posted @ 2019-01-08 18:39 0C° 阅读(245) 评论(0) 推荐(0)
二级菜单的制作
摘要:涉及Banner广告 其原理是利用js实现图片的时间替换。 其代码是: //定时setInterval(funname,1000) var arr=new Array; arr[0]="images/banner1.jpg"; arr[1]="images/banner2.jpg"; arr[2]= 阅读全文
posted @ 2019-01-08 18:25 0C° 阅读(138) 评论(0) 推荐(0)
01、新手建立门户网站
摘要:网站框架 代码: 菜单和logo部分 注意: /*列表平铺,使用display:inline-block; 链接css文档的代码: <link rel="stylesheet" type="text/css" href="./盒子的浮动.css"> 浮动float:left/right positi 阅读全文
posted @ 2019-01-08 18:18 0C° 阅读(209) 评论(0) 推荐(0)
利用Git hub创建博客
摘要:1、准备工作 到Git官网 下载Git,并且配置环境变量 2、注册Git Hub账号 到Git Hub官网注册相关账号,比如本文的账号为13627225740L,并至New repository创建仓库,username的格式如lihui.github.io 3、利用创建Github创建本地仓库 4 阅读全文
posted @ 2019-01-08 18:09 0C° 阅读(315) 评论(0) 推荐(0)