作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的菜单有文本过渡样式,当我将鼠标悬停在菜单上并悬停在菜单上时,下拉菜单消失了,但是下拉列表中的文本在消失后有延迟,就像,它必须完成文本文字消失后的过渡样式。
嗯,我该怎么办? :)
<head>
<style type="text/css">
body{font-family:HelveticaLTStd-Light;}
table{font-size:80%}
a{color:#f0f0f0;text-decoration:none;
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
transition:.5s;
}
a:hover{color:#006600;}
font-family:HelveticaLTStd-Light;
td.menu{background:#DEB887}
table.menu
{
font-size:100%;
color:#f0f0f0;
position:absolute;
visibility:hidden;
background:#558800;
opacity:0.9;
}
body {
background:url(wall.jpg) no-repeat fixed center;
}
table
{
border-collapse:collapse;
}
table, td, th
{
position:relative;
}
</style>
<script type="text/javascript">
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden";
}
</script>
</head>
<body>
<div id="header">
<br>
<br><table border="0" align="center">
<tr>
<th align="left" width="430"><font color="cccccc" face="HelveticaLTStd-Light" size="15">C-Ann Trading</font><br>
<font color="#f0f0f0" size="5">and Computer Services </font> </th>
<th width="120" style="border-right:1px solid #000000;border-color:#cccccc"><br><font size="3"><a href="index.html">Home</a></font></th>
<th width="120" style="border-right:1px solid #000000;border-color:#cccccc"><br><font size="3"><a href="about.htm">About Us</a></font></th>
<th width="120" onmouseover="showmenu('products')" onmouseout="hidemenu('products')" style="border-right:1px solid #000000;border-color:#cccccc"><br><font size="3" color="#f0f0f0">Products</font>
<table border="1" class="menu" id="products" width="150">
<tr><th align="left" class="menu"><a href="notebook.htm">      Notebooks</a></tr></th>
<tr><th align="left" class="menu"><a href="monitor.htm">      Monitors</a></tr></th>
<tr><th align="left" class="menu"><a href="component.htm">      Components</a></tr></th>
<tr><th align="left" class="menu"><a href="software.htm">      Softwares</a></tr></th>
<tr><th align="left" class="menu"><a href="peripheral.htm">      Peripherals</a></tr></th>
<tr><th align="left" class="menu"><a href="network.htm">      Networking</a></tr></th>
<tr><th align="left" class="menu"><a href="storage.htm">      Storage Devices</a></tr></th>
最佳答案
我觉得你的问题出在这个
a{color:#f0f0f0;text-decoration:none;
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
transition:.5s;
}
移除标签上的过渡
或者减少到.2s这应该是什么样子 Preview
关于html - 鼠标 hover Out,css transition 和 dropdown menu 麻烦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14877537/
我是一名优秀的程序员,十分优秀!