使用u-boot的功能更新自己:a.usb 1 30000000 usb端口下载 一直等待下载 下载到的地址 b.protect off all 去除所有存储块的写保护 c.erase 0 7ffff 擦除0~7ffff 这256k大小的数据 d.cp.b 30000000 0 80000 复制字节 ...
分类:
其他好文 时间:
2020-04-07 00:20:00
阅读次数:
69
a{ display: inline-block; width: 10px;height:5px; background: red;line-height: 0;font-size:0;vertical-align: middle;-webkit-transform: rotate(45deg);} ...
分类:
Web程序 时间:
2020-04-06 23:36:39
阅读次数:
167
三列布局,中间自适应,尝试了两种方法float.mydiv{ background-color: #eee; margin:20px; padding: 20px; border: solid 1px #999; overflow: auto; } .left { float: left; widt ...
分类:
其他好文 时间:
2020-04-06 21:05:21
阅读次数:
85
从ArcGIS 10开始,ArcGIS开始支持后台地理处理。使用Geoprocessor.ExecuteAsync()方法,可以在ArcGIS应用程序的后台执行工具或模型工具。也就是说当工具在后台进程中执行时,ArcGIS控件(例如,MapControl、PageLayoutControl、Glob ...
分类:
其他好文 时间:
2020-04-06 17:16:14
阅读次数:
195
让我们了解一下最简单的拖拽效果: 1.首先我们先设置一个div,然后简单设置一下样式: div{ width:50px; height: 50px; background-color: red; position: absolute; } 2.然后我们编写js部分,我们要清楚,元素的拖拽分三个部分: ...
分类:
Web程序 时间:
2020-04-06 17:13:43
阅读次数:
78
CSS3 transition动画 1、transition-property 设置过渡的属性,比如:width height background-color2、transition-duration 设置过渡的时间,比如:1s 500ms3、transition-timing-function ...
分类:
Web程序 时间:
2020-04-06 13:26:02
阅读次数:
79
border 边框是我们美化网页、增强样式最常用的手段之一。例如: <div class="text"></div> .text { width: 254px; height: 254px; background-color: #33AAE1; border: 10px solid #03D766; ...
分类:
其他好文 时间:
2020-04-05 13:45:14
阅读次数:
194
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>浮动</title> </head> <body> <div style="width: 200px; height: 200px; background-color: red; ...
分类:
其他好文 时间:
2020-04-05 11:47:22
阅读次数:
70
今日在写一个阴影效果的时候遇到了一个小问题,不多说,上代码 div { width: 100px; height: 100px; background: #e3e3e3; border: 1px solid #333; box-shadow: 0 0 50px rgba(0, 0, 0, 0.5); ...
分类:
Web程序 时间:
2020-04-04 18:39:19
阅读次数:
83
我们来了解一下 linear gradient() 是什么呢? 1.linear gradient 是一个 CSS3 版本的新特性用于创建一个线性渐变效果的背景,如下图。 效果 代码: ...
分类:
Web程序 时间:
2020-04-03 21:42:42
阅读次数:
252