我正在使用教程http://www.webdesignlondon-tristar.co.uk/website-design-london/insane-jquery-image-rollover。
我希望翻转时图像的淡化/变暗以及文本显示在教程中。但是由于某些原因,即使在启动空白文档时我也似乎无法工作。
这不是我第一次使用jquery所以我很困惑为什么我不能让它工作。
我已经将所有代码一起使用了;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.wrapper { padding: 8px; background-color: #fff; border: 1px #0d5a2c solid; position: relative; width:300; height: 300; margin: 0 auto; }
.wrapper:hover { cursor: pointer; }
.description { display: none; background-color: #000; color: #000; position: absolute; left: 8px; top: 8px; text-decoration: none; font-size: 1.5em; width: 250px; height: 130px; padding: 120px 0 0 0; }
.description img { vertical-align: middle; margin: 0 2px 1px 0; }
</style>
<script src="jquery-1.3.1.min.js" type="text/javascript">
$(document).ready(function(){
$('.wrapper').hover(function(){
$(this).children('.description').stop().fadeTo(200, 0.8);
},function(){
$(this).children('.description').stop().fadeTo(200, 0);
});
});
</script>
</head>
<body>
<div class="wrapper">
<img src="http://www.compuhex.co.uk/Version2/products2/blue.PNG" alt="Product 1" />
<a href="#" title="Click for More" class="description">
Want to read more?
</a>
</div>
</body>
</html>
可以在http://www.compuhex.co.uk/Version2/hovertext/
上看到实时链接抱歉,如果代码很乱。
感谢所有帮助人员
所以总结我想看看为什么代码不工作,即使它是教程网站的副本。显示的技术是我想对我的网站做的事情。感谢
答案 0 :(得分:0)
您使用的是旧版本的jQuery(1.3.1),它可以正常运行(因为它可以支持)版本&gt; 1.4;
在您的示例中,将ready
代码包裹在<script src=..
元素中,您需要将两者分开,即:
<script src="jquery-1.7.2.min.js" type="text/javascript">
$(document).ready(function(){
...
</script>
为:
<script src="jquery-1.7.2.min.js" type="text/javascript"></script>
<script type='text/javascript'>
$(document).ready(function(){
...
</script>
答案 1 :(得分:0)
将您的代码替换为
<script src="jquery-1.3.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.wrapper').hover(function(){
$(this).children('.description').stop().show().fadeTo(200, 0.8);
},function(){
$(this).children('.description').stop().hide().fadeTo(200, 0);
});
});
</script>
工作正常。版本不是问题