html
一、常用属性
1.色彩属性
COLOR=#RRGGBB,前景色,参考色彩对照表
BGCOLOR=#RRGGBB,背景色
2.样式属性
font-size:字体大小
color:字体颜色
font-family:字体
font-weight:文字加粗
background-color:背景颜色
text-align:文本对齐方式
text-decoration:文本描述方式(消除链接下划线选none)
width:宽
height:高
border:边框
border-color:边框颜色
border-left:左边框
border-left-color:左边框颜色
background-image:背景图片
background-color:背景颜色
background-repeat:背景图片重复方式
margin:边缘距离,0px auto 可以让一个div绝对居中 z-index
a:hover{}定义鼠标经过链接字体时的属性,如颜色等
a:link{}定义链接文字被点击过的颜色
body{}:定义Body的样式
p{}定义P标签的样式
二、行为动作
Onclick:鼠标点击
Onmouseover:鼠标经过
Onmouseout:鼠标移走
Onload:打开某某时载入某某
Onunload:关闭某某时弹出某某
三、基本属性
Colspan="",单元格跨越多列
Rowspan="",单元格跨越多行
Width="";定义表格宽度
Height="";定义表格高度
Align="";对齐方式 Valign="";
Border="",边框宽度
Bgcolor="",背景色
Bordercolor="",边框颜色
Bordercolorlight="",边框明亮面的颜色
Bordercolordark="",边框暗淡面的颜色
Cellpadding="",内容与边框的距离(默认为2)
Cellspacing="",单元格间的距离(默认为2)
<body oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'>
其中各个事件的意义是:
1)、oncontextmenu:单禁用右键菜单
oncontextmenu='return false':来取消鼠标右键
2)、ondragstart:事件在用户开始拖动元素或选择的文本时触发 return false:禁止鼠标在网页上拖动
3)、onselectstart="return false" 禁止选中网页上的内容
4)、onselect:事件会在文本框中的文本被选中时发生。 onselect="SomeJavaScriptCode" ,必需规定该事件发生时执行的 JavaScript。 document.selection.empty():表示文本框被选中时为空
5)、oncopy="return false" 防复制用户在网页上选中的内容
6)、onbeforecopy():默认动作的事件源对象上被取消。
7)、onmouseup:事件会在鼠标按键被松开时发生。 onmouseup="SomeJavaScriptCode",同onselect一样,必需规定该事件发生时执行的 JavaScript。
document.selection.empty():表示文本框被选中时为空
document.oncontextmenu=function(){return false};
禁止所有按键
window.onkeydown = window.onkeyup = window.onkeypress = function () {
window.event.returnValue = false;
return false; }
js键盘键值
keycode 8 = BackSpace BackSpace
keycode 9 = Tab Tab
keycode 12 = Clear
keycode 13 = Enter
keycode 16 = Shift_L
keycode 17 = Control_L
keycode 18 = Alt_L
keycode 19 = Pause
keycode 20 = Caps_Lock
keycode 27 = Escape Escape
keycode 32 = space space
keycode 33 = Prior
keycode 34 = Next
keycode 35 = End
keycode 36 = Home
keycode 37 = Left
keycode 38 = Up
keycode 39 = Right
keycode 40 = Down
keycode 41 = Select
keycode 42 = Print
keycode 43 = Execute
keycode 45 = Insert
keycode 46 = Delete
keycode 47 = Help
keycode 48 = 0 equal braceright
keycode 49 = 1 exclam onesuperior
keycode 50 = 2 quotedbl twosuperior
keycode 51 = 3 section threesuperior
keycode 52 = 4 dollar
keycode 53 = 5 percent
keycode 54 = 6 ampersand
keycode 55 = 7 slash braceleft
keycode 56 = 8 parenleft bracketleft
keycode 57 = 9 parenright bracketright
keycode 65 = a A
keycode 66 = b B
keycode 67 = c C
keycode 68 = d D
keycode 69 = e E EuroSign
keycode 70 = f F
keycode 71 = g G
keycode 72 = h H
keycode 73 = i I
keycode 74 = j J
keycode 75 = k K
keycode 76 = l L
keycode 77 = m M mu
keycode 78 = n N
keycode 79 = o O
keycode 80 = p P
keycode 81 = q Q at
keycode 82 = r R
keycode 83 = s S
keycode 84 = t T
keycode 85 = u U
keycode 86 = v V
keycode 87 = w W
keycode 88 = x X
keycode 89 = y Y
keycode 90 = z Z
keycode 96 = KP_0 KP_0
keycode 97 = KP_1 KP_1
keycode 98 = KP_2 KP_2
keycode 99 = KP_3 KP_3
keycode 100 = KP_4 KP_4
keycode 101 = KP_5 KP_5
keycode 102 = KP_6 KP_6
keycode 103 = KP_7 KP_7
keycode 104 = KP_8 KP_8
keycode 105 = KP_9 KP_9
keycode 106 = KP_Multiply KP_Multiply
keycode 107 = KP_Add KP_Add
keycode 108 = KP_Separator KP_Separator
keycode 109 = KP_Subtract KP_Subtract
keycode 110 = KP_Decimal KP_Decimal
keycode 111 = KP_Divide KP_Divide
keycode 112 = F1
keycode 113 = F2
keycode 114 = F3
keycode 115 = F4
keycode 116 = F5
keycode 117 = F6
keycode 118 = F7
keycode 119 = F8
keycode 120 = F9
keycode 121 = F10
keycode 122 = F11
keycode 123 = F12
keycode 124 = F13
keycode 125 = F14
keycode 126 = F15
keycode 127 = F16
keycode 128 = F17
keycode 129 = F18
keycode 130 = F19
keycode 131 = F20
keycode 132 = F21
keycode 133 = F22
keycode 134 = F23
keycode 135 = F24
keycode 136 = Num_Lock
keycode 137 = Scroll_Lock
keycode 187 = acute grave
keycode 188 = comma semicolon
keycode 189 = minus underscore
keycode 190 = period colon
keycode 192 = numbersign apostrophe
keycode 210 = plusminus hyphen macron
keycode 211 =
keycode 212 = copyright registered
keycode 213 = guillemotleft guillemotright
keycode 214 = masculine ordfeminine
keycode 215 = ae AE
keycode 216 = cent yen
keycode 217 = questiondown exclamdown
keycode 218 = onequarter onehalf threequarters
keycode 220 = less greater bar
keycode 221 = plus asterisk asciitilde
keycode 227 = multiply division
keycode 228 = acircumflex Acircumflex
keycode 229 = ecircumflex Ecircumflex
keycode 230 = icircumflex Icircumflex
keycode 231 = ocircumflex Ocircumflex
keycode 232 = ucircumflex Ucircumflex
keycode 233 = ntilde Ntilde
keycode 234 = yacute Yacute
keycode 235 = oslash Ooblique
keycode 236 = aring Aring
keycode 237 = ccedilla Ccedilla
keycode 238 = thorn THORN
keycode 239 = eth ETH
keycode 240 = diaeresis cedilla currency
keycode 241 = agrave Agrave atilde Atilde
keycode 242 = egrave Egrave
keycode 243 = igrave Igrave
keycode 244 = ograve Ograve otilde Otilde
keycode 245 = ugrave Ugrave
keycode 246 = adiaeresis Adiaeresis
keycode 247 = ediaeresis Ediaeresis
keycode 248 = idiaeresis Idiaeresis
keycode 249 = odiaeresis Odiaeresis
keycode 250 = udiaeresis Udiaeresis
keycode 251 = ssharp question backslash
keycode 252 = asciicircum degree
keycode 253 = 3 sterling
keycode 254 = Mode_switch
字母和数字键的键码值(keyCode) |
按键 | 键码 | 按键 | 键码 | 按键 | 键码 | 按键 | 键码 |
A |
65 |
J |
74 |
S |
83 |
1 |
49 |
B |
66 |
K |
75 |
T |
84 |
2 |
50 |
C |
67 |
L |
76 |
U |
85 |
3 |
51 |
D |
68 |
M |
77 |
V |
86 |
4 |
52 |
E |
69 |
N |
78 |
W |
87 |
5 |
53 |
F |
70 |
O |
79 |
X |
88 |
6 |
54 |
G |
71 |
P |
80 |
Y |
89 |
7 |
55 |
H |
72 |
Q |
81 |
Z |
90 |
8 |
56 |
I |
73 |
R |
82 |
0 |
48 |
9 |
57 |
数字键盘上的键的键码值(keyCode) | 功能键键码值(keyCode) |
按键 | 键码 | 按键 | 键码 | 按键 | 键码 | 按键 | 键码 |
0 |
96 |
8 |
104 |
F1 |
112 |
F7 |
118 |
1 |
97 |
9 |
105 |
F2 |
113 |
F8 |
119 |
2 |
98 |
* |
106 |
F3 |
114 |
F9 |
120 |
3 |
99 |
+ |
107 |
F4 |
115 |
F10 |
121 |
4 |
100 |
Enter |
108 |
F5 |
116 |
F11 |
122 |
5 |
101 |
- |
109 |
F6 |
117 |
F12 |
123 |
6 |
102 |
. |
110 |
|
|
|
|
7 |
103 |
/ |
111 |
|
|
|
|
控制键键码值(keyCode) |
按键 | 键码 | 按键 | 键码 | 按键 | 键码 | 按键 | 键码 |
BackSpace |
8 |
Esc |
27 |
Right Arrow |
39 |
-_ |
189 |
Tab |
9 |
Spacebar |
32 |
Down Arrow |
40 |
.> |
190 |
Clear |
12 |
Page Up |
33 |
Insert |
45 |
/? |
191 |
Enter |
13 |
Page Down |
34 |
Delete |
46 |
`~ |
192 |
Shift |
16 |
End |
35 |
Num Lock |
144 |
[{ |
219 |
Control |
17 |
Home |
36 |
;: |
186 |
/| |
220 |
Alt |
18 |
Left Arrow |
37 |
=+ |
187 |
]} |
221 |
Cape Lock |
20 |
Up A |
window.open
window.open("<%=basePath%>/coalGroup/index", "_blank", "toolbar=yes, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400");
参数说明
channelmode=yes|no|1|0 |
是否使用剧院模式显示窗口。默认为 no。 |
directories=yes|no|1|0 |
是否添加目录按钮。默认为 yes。 |
fullscreen=yes|no|1|0 |
是否使用全屏模式显示浏览器。默认是 no。处于全屏模式的窗口必须同时处于剧院模式。 |
height=pixels |
窗口文档显示区的高度。以像素计。 |
left=pixels |
窗口的 x 坐标。以像素计。 |
location=yes|no|1|0 |
是否显示地址字段。默认是 yes。 |
menubar=yes|no|1|0 |
是否显示菜单栏。默认是 yes。 |
resizable=yes|no|1|0 |
窗口是否可调节尺寸。默认是 yes。 |
scrollbars=yes|no|1|0 |
是否显示滚动条。默认是 yes。 |
status=yes|no|1|0 |
是否添加状态栏。默认是 yes。 |
titlebar=yes|no|1|0 |
是否显示标题栏。默认是 yes。 |
toolbar=yes|no|1|0 |
是否显示浏览器的工具栏。默认是 yes。 |
top=pixels |
窗口的 y 坐标。 |
width=pixels |
窗口的文档显示区的宽度。以像素计。 |
获取QQ头像接口
http://q1.qlogo.cn/g?b=qq&nk=QQ号码&s=640
网页版页面:http://www.aoebbs.net/Tutorial.php
discuz论坛php单页:
php页面放在根目录,include template('diy:xxxx');为模板路径,默认路径在template/default/forum里面,将htm页面放到forum文件夹,你也可以使用相对路径放到其他文件夹,例如include template('diy:../../Age_of_Empires_III_Modding_Tutorial/Tutorial');就放到了根目录的Age_of_Empires_III_Modding_Tutorial文件夹里面。Dreamweav保存utf-8格式时,尽量不要勾选UniCode签名。(记事本会默认勾选UniCode签名,尽量少用)
|
Tutorial.php - 记事本 |
____ |
□ |
X |
|
|
文件(F) 编辑(E) 格式(O) 查看(V) 帮助(H) |
|
|
|
|
|
<?php
define('CURSCRIPT', 'archy');
require './source/class/class_core.php';
$discuz = & discuz_core::instance();
$discuz->init();
loadcache('diytemplatename');
$navtitle = '帝国时代3修改教程网页版 | 帝国时代3MOD修改教程 | 帝国时代3修改方法 | 帝国时代3无限人口 | 世紀帝國3修改教程 | Age of Empires III Modding Tutorial';
$metakeywords = '帝国时代3修改教程,亚洲王朝修改教程,修改方法,修改圣典,制作模型,修改卡片,无限人口,Age of Empires III Modding Tutorial,世纪帝国3,制作地图教程,地图生成器';
$metadescription = '国内最齐全的帝国时代3修改教程,帝国3修改无限人口教程,修改卡片教程、无限运送,制作地图教程,AOE3ED使用方法,帝国时代3秘籍,制作帝国3模型教程';
include template('diy:../../Age_of_Empires_III_Modding_Tutorial/Tutorial'); |
|
|
discuz网页版源页面 :Tutorial.htm注:E书无法正常显示,必须要在discuz论坛出现使用才能正常显示。
部分用户组可见内容:Hidden.htm注:discuz的判断语句为<-- {if }-->格式,不在discuz程序论坛使用会被视为注释,并且显示所有内容。