我已将以下代码添加到我的 index.php 和 template.css。我看到图像但没有动画,我在这里错过了什么愚蠢的东西吗?
谢谢
**inside <head> tag**
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
var left = $(window).width() - $('#about').offset().left;
$("#about").animate({
opacity: 0.60,
left: left,
}, 5000, function () {
// Animation complete.
});
</script>
**inside <body> tag**
<div id="about"> <a href="http://www.google.co.uk" title="about">
<img src="images/models/about.png" alt="news" width="75" height="150" /></a>
</div>
**Inside css**
#about {
width: 50px;
height: 50px;
position: absolute;
top: 400px;
right: 300px;
background: transparent;
}