标签:style blog http color io os 使用 ar java
首先,实现demo样式
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title>记住密码提示框</title> <style> body,input,p{marginj:0;padding:0;} body{font:12px/1.5 Tahoma;} #outer{width:200px;margin:10px auto;} input{margin-right:5px; vertical-align:middle;} #tips{padding:5px;margin-top:5px;background:#ffefa4;border:1px solid #f90; display:none;} </style> </head> <body> <div id="outer"> <label><input type="checkbox">两周内自动登陆</label> <div id="tips">为了您的信息安全,请不要再网吧或公用电脑上使用此功能!</div> </div> </body> </html>
然后,用JS实现功能需求
<script> window.onload = function () { var oTips = document.getElementById("tips"); var oLabel = document.getElementsByTagName("label")[0]; oLabel.onmouseover = function () { oTips.style.display = "block" }; oLabel.onmouseout = function () { oTips.style.display = "none" } } </script>
小结:
onmouseover 事件会在鼠标指针移动到指定的对象上时发生。
参考链接:
CSS vertical-align 属性设置元素的垂直对齐方式。
http://www.w3school.com.cn/cssref/pr_pos_vertical-align.asp
http://www.zhangxinxu.com/wordpress/2010/06/css-vertical-align%E7%9A%84%E6%B7%B1%E5%85%A5%E7%90%86%E8%A7%A3%EF%BC%88%E4%BA%8C%EF%BC%89%E4%B9%8Btext-top%E7%AF%87/
标签:style blog http color io os 使用 ar java
原文地址:http://www.cnblogs.com/code-charmer/p/4024310.html