多个jquery脚本还是合并为单个?

时间:2013-09-26 15:43:22

标签: jquery

我可以拥有这样的脚本吗?或者我可以为所有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>

0 个答案:

没有答案