我可以有这样的脚本吗?或者我可以将所有 3 张图片合为一张,关于和新闻图片的工作方式是这样的,但画廊的一张根本没有动画?像这样有一次jquery src脚本也可以吗?谢谢
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(function() {
var height = '430';
var left = '150'
$("#about").animate({
opacity: 1,
top: height,
left: left
}, 5000, function () {
// Animation complete.
});
});
</script>
<script>
$(function() {
var height = '375';
var left = '250'
$("#news").animate({
opacity: 1,
top: height,
left: left
}, 6000, function () {
// Animation complete.
});
});
</script>
<script>
$(function() {
var height = '325';
var left = '250'
$("#gallery").animate({
opacity: 1,
top: height,
left: left
}, 7000, function () {
// Animation complete.
});
});
</script>