Скрин - http://www.ucoz-scripts.ru/VSE/VSE2/vsokno.jpg Скрипт для ucoz: jHint - это всплывающая подсказка для вашего сайта. Как она работает?! Вы наводите на квадрат серого цвета, жмете и появляется после чего этот квадрат становится светло-синим цветом и выскакивает подсказка(нужно менять свою подсказку). После нажатия на любое пустое место на сайте подсказка плавно исчезает. Скрипт не сложен в установке и может пригодится как новичку, так и продвинутому веб-мастеру.
1. Для начала установим стили:
--------------------------------------------------
<style type="text/css">
#button {
width: 10px;
height: 15px;
cursor: pointer;
border: 0 none;
}
.n {
background: #555;
}
.y {
background: #00b4ff;
}
#content {
display: none;
border: 1px solid black;
width: 300px;
background: #eee;
font-family: Tahoma;
position: absolute;
opacity: 0.8;
}
</style>
----------------------------------------------------------
2. Затем — сам скрипт:
-------------------------------------------------
<script type="text/javascript">
$('#button').click(function (ev) {
if ($(this).hasClass('n')) {
$(this).attr('class', 'y');
$('#content').css({
left: ev.pageX + 10,
top: ev.pageY + 10
}).fadeIn();
} else {
$(this).attr('class', 'n');
$('#content').fadeOut();
}
}).blur(function () {
$('#content').fadeOut();
$(this).attr('class', 'n');
});
</script>
--------------------------------------------------
3. Ну и саму кнопку:
-----------------------------------------
<input type="button" id="button" class="n"></div>
<div id="content">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diem
nonummy nibh euismod tincidunt ut lacreet dolore magna aliguam erat volutpat.
Ut wisis enim ad minim veniam, quis nostrud exerci tution ullamcorper suscipit
lobortis nisl ut aliquip ex ea commodo consequat.
</div>
-------------------------------------------
Не забываем настроить ширину блока с подсказкой в CSS.