HTML
十多年的苏尼特右网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。全网整合营销推广的优势是能够根据用户设备显示端的尺寸不同,自动调整苏尼特右建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。创新互联从事“苏尼特右网站设计”,“苏尼特右网站推广”以来,每个客户项目都认真落实执行。
HEAD
SCRIPT LANGUAGE="JavaScript"
!--
var show_Interval = null;
var hide_Interval = null;
var long_Interval = null;
var short_Interval = null;
function $(id){
return document.getElementById(id);
}
function showDiv(id){
clearInterval(hide_Interval)
show_Interval=setInterval("showDivSlow(\""+id+"\")", 100);
}
function showDivSlow(id){
if($(id).style.display=="none"){
$(id).style.display="block";
}
var opacity=$(id).filters.alpha.opacity;
if(opacity==100){
clearInterval(show_Interval)
}else{
$(id).filters.alpha.opacity=opacity+5;
}
}
function longDiv(id){
clearInterval(short_Interval)
long_Interval=setInterval("longDivSlow(\""+id+"\")", 100);
}
function longDivSlow(id){
var height=$(id).style.height;
height=parseInt(height.substr(0,height.length-2));
if(height==500){
clearInterval(long_Interval)
}else{
$(id).style.height=(height+5)+'px';
}
}
function shortDiv(id){
clearInterval(long_Interval)
short_Interval=setInterval("shortDivSlow(\""+id+"\")", 100);
}
function shortDivSlow(id){
var height=$(id).style.height;
height=parseInt(height.substr(0,height.length-2));
if(height==0){
clearInterval(short_Interval)
}else{
$(id).style.height=(height-5)+'px';
}
}
function hideDiv(id){
clearInterval(show_Interval)
hide_Interval=setInterval("hideDivSlow(\""+id+"\")", 100);
}
function hideDivSlow(id){
var opacity=$(id).filters.alpha.opacity;
if(opacity==0){
$(id).style.display="none";
clearInterval(hide_Interval)
}else{
$(id).filters.alpha.opacity=opacity-5;
}
}
//--
/SCRIPT
/HEAD
BODY
button onclick="showDiv(1)"showDiv/button
button onclick="hideDiv(1)"hideDiv/button
button onclick="longDiv(1)"longDiv/button
button onclick="shortDiv(1)"shortDiv/button
div id="1" style="background-color:'red';width:400px;height:400px;filter:alpha(opacity=50);"div
/BODY
/HTML
补充:div必须支持滤镜,是IE才可以
补充2:不给分那我要哭了
有两种方式:一、做界面的时候就把这两个控件都放上去,并默认显示一个,把另一个的visible属性设置为FALSE,在Button的相关事件的响应代码中把Button的visible设为FALSE,把文本框的设为TRUE二、只是在初始做界面的时候只是放一个Button,在Button的相关事件(选择事件,鼠标的单击事件等)中添加代码,实例化一个文本框,然后将Button的bound赋给文本框,然后将Button的visible设为FALSE,或者干脆将他dispose了
我这写的不错啊,怎么审核部通过唻?奇怪
eclipse显示被隐藏的文件或文件夹
点击左边导航(Navigator或者PackageExplorer等)右上角的小三角 - Filters
点击需要显示文件,让复选框处于非选中状态。
这是ide的功能,你想知道ide是怎么做的?而且这个隐藏要有具体情况的吧,比如说方法体和import的逻辑明显就不一样。做法的法,word的文字处理功能比这个都要负责多了,