JavaScript
- 4 ответа
- 0 вопросов
5
Вклад в тег
var timesArray = [];
$('.menu').hover(
function()
{
var id = jQuery.data(this);
timesArray[id] = setTimeout(function() {
//Показываем меню
$(this).css({'display' : 'block'});
timesArray[id] = "";
}, 500);
},
function()
{
var id = jQuery.data(this);
//Скрываем меню
$(this).css({'display' : 'none'});
if (timesArray[id])
{
clearTimeout(timesArray[id]);
}
}
);
button#search_button {
background: url('img/search.png') no-repeat center left;
height: 36px;
width: 90px;
text-align: end;
}
$("#one1").on("click", function() {
if ($("#one1").prop("checked"))
{
$(".main-block").css("display", "none");
}
else
{
$(".main-block").css("display", "block");
}
});
$ mogrify -resize 165x165 *.png