Показать сообщение отдельно
  #1 (permalink)  
Старый 24.10.2015, 12:39
Интересующийся
Отправить личное сообщение для злобная_пипа Посмотреть профиль Найти все сообщения от злобная_пипа
 
Регистрация: 01.10.2015
Сообщений: 15

Налажал гдето в коде и не могу понять где.
Налажал где то в коде и не могу понять где.
Картинка должна отступить в левую сторону на 200пх но скрипт не работает. Подскажите в чем проблема.
$(".pic1, .pic2, .pic3, .pic4, .pic5, .pic6, .pic7")  
  .hover(function() {  
    $(this).stop().animate({ left: "-200px" }, 300);  
  }, function() {  
    $(this).stop().animate({ left: "0px" }, 'fast');  
  });

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jqueryui.js"></script>
<script type="text/javascript" src="menu.js"></script>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="stylecss.css" />
</head>

<body>
<style>
   .menu { width:300px; margin: 14%; display: inline;}

   .pic1 { border: solid 0px; height:200px; position: absolute; top: 0px; left: 0px }
   
   .pic2 { border: solid 0px; height:200px; position: absolute; top: 0px; left: 100px }
   
   .pic3 { border: solid 0px; height:200px; position: absolute; top: 0px; left: 200px }
   
   .pic4 { border: solid 0px; height:200px; position: absolute; top: 0px; left: 300px }
   
   .pic5 { border: solid 0px; height:200px; position: absolute; top: 0px; left: 400px }
   
   .pic6 { border: solid 0px; height:200px; position: absolute; top: 0px; left: 500px }
   
   .pic7 { border: solid 0px; height:200px; position: absolute; top: 0px; left: 600px }
</style>
<center>
<img src="im1.png" alt="" class="menu pic1"/>  
<img src="im2.png" alt="" class="menu pic2"/>  
<img src="im3.png" alt="" class="menu pic3"/>  
<img src="im4.png" alt="" class="menu pic4"/>  
<img src="im5.png" alt="" class="menu pic5"/>  
<img src="im6.png" alt="" class="menu pic6"/>  
<img src="im7.png" alt="" class="menu pic7"/>  
</center>

</body>
</html>
Изображения:
Тип файла: jpg im7.jpg (21.2 Кб, 3 просмотров)
Ответить с цитированием