Показать сообщение отдельно
  #13 (permalink)  
Старый 09.01.2016, 02:31
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,080


<!DOCTYPE html>
<html lang="ru">
<head>
	<meta charset="UTF-8"/>
	<title>Двигай </title>
	<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
	<style>
		div { 	border: 1px solid black; position: absolute; background: red;}
	</style>
	<script type="text/javascript">
		$( function() {
			$('#myBtn').on({click : function() {
			   $(".my").css({ top : "+=10" ,left : "+=10" })

			}})
		});
	</script>
</head>

<body>
<input type='button' id='myBtn' value='Click me'>
<div class="my" style="top: 74px; left: 115px;">11</div>
<div class="my" style="top: 45px; left: 15px;">22</div>
<div class="my" style="top: 52px; left: 315px;">33</div>
<div class="my" style="top: 34px; left: 225px;">44</div>
</body>
</html>
Ответить с цитированием