Jump to content
  • 0

Стиль кнопки


nik1524
 Share

Question

7 answers to this question

Recommended Posts

  • 0

используйте :hover

Вопрос в том, как сделать так чтобы картинка менялась при наведение если путь до изображения прописывается в самом html а не в css

У меня только так получилось - http://jsfiddle.net/jg9Zs/1/ . :blush: Вы поняли принцип?

HTML+CSS код:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.image-1{
position: relative;
}
[src$="14.jpg"]{ /* Выбираю элемент по окончанию значения атрибута src равного "14.ipg". Или можно было указать псевдокласс ".image-1 img:last-child" для выбора последней картинки. */
position: absolute;
display: none;
top:0;
}
.image-1:hover img[src$="14.jpg"]{
display: block;
}
</style>
</head>
<body>
<div class="image-1">
<img src="http://www.bugaga.ru/uploads/posts/2012-04/1334857925_foto-11.jpg" alt="Картинка №1">
<img src="http://www.bugaga.ru/uploads/posts/2012-04/thumbs/1334966832_deserts-14.jpg" alt="Картинка №2">
</div>
</body>
</html>

Edited by mrnobody
Link to comment
Share on other sites

  • 0

используйте :hover

Вопрос в том, как сделать так чтобы картинка менялась при наведение если путь до изображения прописывается в самом html а не в css

У меня только так получилось - http://jsfiddle.net/jg9Zs/1/ . :blush: Вы поняли принцип?

HTML+CSS код:

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.image-1{
position: relative;
}
[src$="14.jpg"]{ /* Выбираю элемент по окончанию значения атрибута src равного "14.ipg". Или можно было указать псевдокласс ".image-1 img:last-child" для выбора последней картинки. */
position: absolute;
display: none;
top:0;
}
.image-1:hover img[src$="14.jpg"]{
display: block;
}
</style>
</head>
<body>
<div class="image-1">
<img src="http://www.bugaga.ru/uploads/posts/2012-04/1334857925_foto-11.jpg" alt="Картинка №1">
<img src="http://www.bugaga.ru/uploads/posts/2012-04/thumbs/1334966832_deserts-14.jpg" alt="Картинка №2">
</div>
</body>
</html>

Спасибо, да понял, сейчас попробую

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