📄 img.htm
字号:
<HTML>
<HEAD>
<TITLE>插入图片文件</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="editor_dialog.css">
<script language="JavaScript">
function OK(){
var str1="";
var strurl=document.form1.url.value;
if (strurl==""||strurl=="http://")
{
alert("请先输入图片地址,或者上传图片!");
document.form1.url.focus();
return false;
}
else
{
str1="<img src='"+document.form1.url.value+"' alt='"+document.form1.alttext.value+"' resize='1' ";
if(document.form1.width.value!=''&&document.form1.width.value!='0') str1=str1+"width='"+document.form1.width.value+"' ";
if(document.form1.height.value!=''&&document.form1.height.value!='0') str1=str1+"height='"+document.form1.height.value+"' ";
str1=str1+" border='"+document.form1.border.vaule+"' align='"+document.form1.aligntype.value+"' ";
if(document.form1.vspace.value!=''&&document.form1.vspace.value!='0') str1=str1+"vspace='"+document.form1.vspace.value+"' ";
if(document.form1.hspace.value!=''&&document.form1.hspace.value!='0') str1=str1+"hspace='"+document.form1.hspace.value+"' ";
if(document.form1.styletype.value!='') str1=str1+"style='"+document.form1.styletype.value+"'";
//str1=str1+" onmousewheel=\"return zoom_img(event,this)\" onload=\"javascript:if(this.width>740) this.width=740\">";
str1=str1+" >";
if(strurl.indexOf("swf")!=-1){
window.returnValue = "[flash=400,300]../"+document.form1.UpFileName.value+"[/flash]"+"$$$"+document.form1.UpFileName.value;
}
else if(strurl.indexOf("wmv")!=-1||strurl.indexOf("asf")!=-1||strurl.indexOf("avi")!=-1||strurl.indexOf("mpg")!=-1){
window.returnValue = "[MP=400,300]../"+document.form1.UpFileName.value+"[/MP]"+"$$$"+document.form1.UpFileName.value;
}
else if(strurl.indexOf("rm")!=-1||strurl.indexOf("ram")!=-1||strurl.indexOf("ra")!=-1){
window.returnValue = "[rm=400,300]../"+document.form1.UpFileName.value+"[/rm]"+"$$$"+document.form1.UpFileName.value;
}
else{
window.returnValue = str1+"$$$"+document.form1.UpFileName.value;
}
window.close();
}
}
function IsDigit()
{
return ((event.keyCode >= 48) && (event.keyCode <= 57));
}
</script>
</head>
<BODY bgColor=menu topmargin=15 leftmargin=15 >
<form name="form1" method="post" action="">
<table width=100% border="0" align="center" cellpadding="0" cellspacing="2">
<tr><td>
<FIELDSET align=left>
<LEGEND align=left>输入图片参数(飞天论坛)</LEGEND>
<table border="0" align=center cellpadding="0" cellspacing="3">
<tr>
<td colspan="2">图片地址:
<input name="url" id="url" value='http://' size=38 maxlength="200">
</td>
</tr><tr>
<td> 说明文字:
<input name="alttext" id=alttext size=20 maxlength="100">
</td>
<td>图片边框:
<input name="border" id=border ONKEYPRESS="event.returnValue=IsDigit();" value="0" size=5 maxlength="2">
像素 </td>
</tr><tr><td>
特殊效果:
<select name="styletype" id=styletype>
<option selected>不应用</option>
<option value="filter:Alpha(Opacity=50)">半透明效果</option>
<option value="filter:Alpha(Opacity=0, FinishOpacity=100, Style=1, StartX=0, StartY=0, FinishX=100, FinishY=140)">线型透明效果</option>
<option value="filter:Alpha(Opacity=10, FinishOpacity=100, Style=2, StartX=30, StartY=30, FinishX=200, FinishY=200)">放射透明效果</option>
<option value="filter:blur(add=1,direction=14,strength=15)">模糊效果</option>
<option value="filter:blur(add=true,direction=45,strength=30)">风动模糊效果</option>
<option value="filter:Wave(Add=0, Freq=60, LightStrength=1, Phase=0, Strength=3)">正弦波纹效果</option>
<option value="filter:gray">黑白照片效果</option>
<option value="filter:Chroma(Color=#FFFFFF)">白色为透明</option>
<option value="filter:DropShadow(Color=#999999, OffX=7, OffY=4, Positive=1)">投射阴影效果</option>
<option value="filter:Shadow(Color=#999999, Direction=45)">阴影效果</option>
<option value="filter:Glow(Color=#ff9900, Strength=5)">发光效果</option>
<option value="filter:flipv">垂直翻转显示</option>
<option value="filter:fliph">左右翻转显示</option>
<option value="filter:grays">降低彩色度</option>
<option value="filter:xray">X光照片效果</option>
<option value="filter:invert">底片效果</option>
</select>
</td>
<td>图片位置:
<select name="aligntype" id=aligntype>
<option selected>默认位置
<option value="left">居左
<option value="right" >居右
<option value="top">顶部
<option value="middle">中部
<option value="bottom">底部
<option value="absmiddle">绝对居中
<option value="absbottom">绝对底部
<option value="baseline">基线
<option value="texttop">文本顶部
</select></td>
</tr>
<tr>
<td>图片宽度:
<input name="width" id=width2 ONKEYPRESS="event.returnValue=IsDigit();" size=4 maxlength="4">
像素</td>
<td>图片高度:
<input name="height" id="height3" onKeyPress="event.returnValue=IsDigit();" size=4 maxlength="4">
像素</td>
</tr><tr>
<td>上下间距:
<input name="vspace" id=vspace ONKEYPRESS="event.returnValue=IsDigit();" value="0" size=4 maxlength="2">
像素</td>
<td>左右间距:
<input name="hspace" id=hspace onKeyPress="event.returnValue=IsDigit();" value="0" size=4 maxlength="2">
像素</td>
</tr></table>
</fieldset>
</td><td width=80 align="center"><input name="cmdOK" type="button" id="cmdOK" value=" 确定 " onClick="OK();">
<br>
<br>
<input name="cmdCancel" type=button id="cmdCancel" onclick="window.close();" value=' 取消 '></td></tr>
<tr>
<td>
<FIELDSET align=left>
<LEGEND align=left>上传本地图片</LEGEND>
<iframe class="TBGen" style="top:2px" ID="UploadFiles" src="../../htmledit/upload_dialog.jsp?dialogtype=pic" frameborder=0 scrolling=no width="350" height="25"></iframe>
</fieldset>
</td>
<td align="center">
<input name="UpFileName" type="hidden" id="UpFileName" value="None">
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -