先看下我开始写的代码吧: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>切换红绿蓝</title> 6 <style> 7 #div{ 8 width: 100px; 9 height: ...
分类:
编程语言 时间:
2016-08-16 20:02:16
阅读次数:
149
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>背景图切换</title> <style type="text/css"> #wrap{ width: 300px;height: 225px; margin: 1 ...
分类:
Web程序 时间:
2016-08-16 19:59:35
阅读次数:
220
animation-name:自定义动画名称; keyframes:关键帧; animation-iteration-count:动画执行次数; div{ width: 300px; height: 300px; background-color: pink; animation-name:from ...
分类:
Web程序 时间:
2016-08-16 13:16:23
阅读次数:
175
1、水平线标记——hr 水平线用于段落与段落之间的分隔,可使得文档结构清晰明白,使文字编排更为整齐。水平线自身包括很多属性:宽度、高度、颜色、排列对齐等。 语法:<hr> (添加一条默认的水平线) 水平线宽度与高度——width、height 默认情况下,插入的水平线是100%宽度,1像素高度。 语 ...
分类:
Web程序 时间:
2016-08-16 10:35:50
阅读次数:
207
打开 admin/ad_position.php这个文件,搜索1024,这里你会搜到两个地方 在236行左右 if ($ad_width > 1024 || $ad_width < 1) 与270行左右 if ($ad_height > 1024 || $ad_height < 1) 这里的1024 ...
分类:
其他好文 时间:
2016-08-16 00:29:07
阅读次数:
100
<doctype html> <head> <title>360图片展示特效</title> <style> *{margin:0;padding:0;} #imgList{ width:1000px; height:630px; /*background:#ff0033;*/ margin:50p ...
分类:
其他好文 时间:
2016-08-16 00:17:50
阅读次数:
146
seq命令总结基本用法seq[选项]...尾数seq[选项]...首数尾数seq[选项]...首数增量尾数以指定增量从首数开始打印数字到尾数。选项:-f,--format=格式使用printf样式的浮点格式-s,--separator=字符串使用指定字符串分隔数字(默认使用:\n)-w,--equal-width在列前添加0使得宽度相同..
分类:
其他好文 时间:
2016-08-15 22:44:36
阅读次数:
270
<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style>.droplet { width: 4em; height: 4em; border-radius: 80% 0 5 ...
分类:
Web程序 时间:
2016-08-15 17:25:48
阅读次数:
5574
typedef struct { int width; int height; }SizeInfo; typedef struct { int x; int y; int width; int height; }ImageRect; /********************************... ...
分类:
其他好文 时间:
2016-08-15 17:16:55
阅读次数:
124
1.屏幕宽度屏幕高度 #define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width #define SCREENH_HEIGHT [UIScreen mainScreen].bounds.size.height 2.获取随机颜色 #defi ...
分类:
其他好文 时间:
2016-08-15 17:14:39
阅读次数:
231