Сообщение от Matre
|
у ТС анимация
|
По уму, если бы Рейсиг не был быдлокодером, то это бы работало на ура:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('div').hover(function() {
$('p').animate({
height: 'toggle',
opacity: "toggle"
}, {
queue: false,
duration: 500
});
});
});
</script>
<style type="text/css">
p {
background: red;
width: 100px;
height: 100px;
}
</style>
<div>text</div>
<p style="display: none;"></p>