我正在使用淡入淡出淡出渐变png以便阅读文本,这是一个png-24代码非常简单但IE8不会褪色,它只是弹出并弹出 $(document).ready(function(){
$('#menu').hover(function() {
$('#gradient').fadeIn('slow');
}, function() {
$('#gradient').fadeOut('fast');
});
});
答案 0 :(得分:0)
<html>
<head>
<title>Test Page</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#menu').hover(function() {
$('#gradient').fadeIn('slow');
}, function() {
$('#gradient').fadeOut('fast');
});
});
</script>
</head>
<body>
<div id="menu" style="background:red; height:200; width:200px;">
<input type="file" id="gradient" style="display:none" />
</div>
</body>
</html>
工作正常........