Показать сообщение отдельно
  #2 (permalink)  
Старый 25.01.2014, 18:08
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

VladLes22,

<!DOCTYPE HTML>

<html>

<head>
  <title>Untitled</title>
  <meta charset="utf-8">
  <style type="text/css">
.title, .slideup{
   opacity: 0;
}

  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script type="text/javascript">
$(document).ready(function() {


$('.slideBox').hover(function() {
              $('.title, .slideup', this).stop().animate({
                   opacity: 1
                 }, 1000);

                    },
                  function() {
              $('.title, .slideup', this).stop().animate({
                   opacity: 0
                 }, 1000);

                    })
              });

</script>

</head>

<body>
<div class="slideBox">
			<a href="#"><img src="../images/1.png"></img></a>
			<h2 class="title">Заголовок</h2>
			<div class="slideup">
				<div class="description">
				Под катом
				</div>
			</div>
		</div>

</body>

</html>
Ответить с цитированием