关于css网页制作的问题,表格行与行之间的断开,框架重叠,鼠标停留做动作
发布网友
发布时间:2022-04-21 16:17
我来回答
共2个回答
热心网友
时间:2022-04-21 17:46
1、你可以用空格或多个表格纵向排列实现;
2、框架不能重叠,如果要实现重叠效果就要用到多个DIV了,设置一下样式style="position:absolute; z-index:1;"
3、要用javascript实现,如:
<script>
leaveSeconds=10;//剩余秒数
function showTimeBefore(){
var tag = document.getElementById("apply");
tag.innerText="我同意 "+leaveSeconds;
leaveSeconds=leaveSeconds-1;
if(leaveSeconds>0){
setTimeout(showTimeBefore,1000)
}
else{
tag.innerText = "我同意";
tag.disabled = false;
}
}
setTimeout(showTimeBefore,1000); //主要靠这个函数 设置时间间隔 每1000毫秒调用函数一次
</script>
<input name="apply" type="button" class="btn_heikuang_big" id="apply" value="我同意 10" onclick="window.location.href='member.steptow.asp'" disabled/>追问第一个和第二个问题就算了
第三个问题追问:
我想要鼠标停留在一个对象上面1秒之后,做一些animate的变化。
$("对象").mouseover(function(){
$("对象").setTimeout(animate({"font-size":"16px"}),1000);
});
我这样写应该不对吧,应该怎样写
热心网友
时间:2022-04-21 19:04
现在做网站用框架的很少啦。。