Jump to content
  • 0

Смена фона при наведении на ссылку


TavlaD
 Share

Question

Задача: Есть слой в котором есть 2 ссылки. В зависимости от того на какую ссылку наводим меняется фон этого слоя.

Знания в JS нет. Поискал в Интернете решения, но либо не подходили, либо не работали. Помогите подправить или может кто-то предложит другой вариант

На данный момент имеется.

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Test</title>
</head>
<body>
<script type="text/javascript">
document.getElementById('ch').onmouseover=function(){document.getElementById('model')[0].style.cssText='background:url("images/logo_ch.png")'}
document.getElementById('op').onmouseover=function(){document.getElementById('model')[0].style.cssText='background:url("images/logo_op.png")'}
</script>
<div id="model">
Выберите марку
<ul>
<li><a href="#" id="op">Модель 1</a></li>
<li><a href="#" id="ch">Модель 2</a></li>
</ul>
</div>
</body>
</html>

CSS:

#model {
height:150px;
background:url(images/logo.png);
background-repeat:no-repeat;
}

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Test</title>
</head>
<body>
<script type="text/javascript">
document.getElementById('ch').onmouseover=function(){document.getElementById('model').style.cssText='background:url("images/logo_ch.png")'}
document.getElementById('op').onmouseover=function(){document.getElementById('model').style.cssText='background:url("images/logo_op.png")'}
</script>
<div id="model">
Выберите марку
<ul>
<li><a href="#" id="op">Модель 1</a></li>
<li><a href="#" id="ch">Модель 2</a></li>
</ul>
</div>
</body>
</html>

UPD: Слабо найти отличия в коде? :facepalmxd:

Link to comment
Share on other sites

  • 0

document.getElementById('ch').onmouseover=function(){document.getElementById('model')[0].style.cssText='background:url("images/logo_ch.png")'}

document.getElementById('op').onmouseover=function(){document.getElementById('model')[0].style.cssText='background:url("images/logo_op.png")'}

в отсутствии выделенного? Исправил у себя, но также при наведении курсора фон не изменился

Link to comment
Share on other sites

  • 0

Ну конечно так не будет работать! Когда отрабатывает скрипт элементов на странице еще нет... вот так правильно:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title>Test</title>
<link href="test.css" rel="stylesheet" type="text/css" />

<script type="text/javascript">
window.onload = function() {
document.getElementById('ch').onmouseover=function() {
document.getElementById('model').style.cssText='background:url("images/logo_ch.png")';
}

document.getElementById('op').onmouseover=function() {
document.getElementById('model').style.cssText='background:url("images/logo_op.png")';
}
}
</script>
</head>
<body>

<div id="model">
Выберите марку

<ul>
<li><a href="#" id="op">Модель 1</a></li>
<li><a href="#" id="ch">Модель 2</a></li>
</ul>
</div>

</body>
</html>

Link to comment
Share on other sites

  • 0

Спасибо. Работает. А такой вопрос. Если я хочу, чтобы когда курсор уходит с ссылки фон менялся на фон по умолчанию, то надо писать на каждую ссылку поведение?

			document.getElementById('ch').onmouseout=function() {
document.getElementById('model').style.cssText='background:url("images/logo.png")';
}
document.getElementById('op').onmouseout=function() {
document.getElementById('model').style.cssText='background:url("images/logo.png")';
}

Или можно как-то одной командой вернуть все?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 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