Jump to content
  • 0

плавное увеличение картинки с ссылкой


Xque
 Share

Question

В нете не нашел ничего. И темы тако не нашел тут. Короче, как увеличить картинку я знаю:

<html>

<title>Test</title>

<head>

<script>

function Uvel(aha) {

if (aha.offsetHeight < 150){

aha.style.height = (aha.offsetHeight + 1) + 'px';

aha.style.width = (aha.offsetWidth + 2) + 'px';

timeoutUvel =setTimeout (function(){Uvel(aha)},2);

}

}

function Umen(aha) {

clearTimeout(timeoutUvel);

if (aha.offsetHeight > 50) {

aha.style.height = (aha.offsetHeight - 1) + 'px';

aha.style.width = (aha.offsetWidth - 2) + 'px';

timeoutUmen =setTimeout (function(){Umen(aha)},2);

}}

</script>

</head>

<br><br>

<body style="margin: 25px; background-color: #000000; color: #ffffff;">

<center>

<img id="ssr" src="logo.jpg" width="50" onmouseover="Uvel(this);"

onmouseout="Umen(this);">

</center>

</body>

</html>

А вот если заключить картинку в тег <a>, то увеличение будет бесконечным. Подскажите как это исправить. Быть может лучше реализовать такое меню иначе? Спасибо.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy