Jump to content
  • 0

двухэтажная картинка


maxs
 Share

Question

Часто встречаю картинки состоящие как бы из 2 объединенных, применяются они вместо варианта смены картинки при наведении мышкой, чтобы не было тормозов при подгрузке. Эта картинка загружается сразу.

Вот пример

S2wSpH2KYD.jpg

Как её применить?

В классе прописано что-то вроде background:transparent url(/111.gif) no-repeat scroll center top; и размер в высоту в 2 раза меньше, но не работает.

Edited by maxs
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Вот код примера, скрол это из-за firebug видимо

.button {display:block;text-align:center;  color:#fff; font-weight:bold; text-decoration:none; font-size:14px;}

#wrap {width:100%; background: url(../img/wrap_bg.gif) no-repeat top center; }
#sign_up { position:absolute; background:url(../img/sign_up.jpg) no-repeat top; width:264px; height:50px; top:305px; left:50%; margin-left:185px; padding-top:10px;}

картинка sign_up.jpg

upd.я идиот, дальше не прокрутил, вот продолжение, кому интересно

#sign_up:hover { background-position: 0px -60px;}

#container { width:1006px; margin:0px auto; position:relative; background:url(../img/container_bg.gif) repeat-y top center;}

Edited by maxs
Link to comment
Share on other sites

  • 0

все просто - допустим у нас есть кнопка 200x20, тогда картинка у нас допустим 200x40 (расположены по-вертикали)

<a href="" class="menu">навигацияяяяяяя</a>
<style type="text/css">
.menu { display:block; width: 200px; height: 20px; background: url('bg.gif') no-repeat left 0;}
.menu:hover { background: url('bg.gif') no-repeat left -20px;}
</style>

в теории все.

Link to comment
Share on other sites

  • 0

Блин. Точно. Hidden это для меню с подменюшками и бекграундом нужен, был не трезв, попутал =/

Код для этого примера, может пригодится

<!DOCTYPE HTML PUBLIC  "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
html, body
{
height: 100%;
width: 100%;
padding:0;
margin:0;
}
.main
{
margin:0 auto;
text-align:center;
width:900px;
}
a:link, a:active, a:visited
{
width:264px;
height:50px;
background:url(menu.jpg) no-repeat left top;
color:#333333;
text-decoration:none;
display:block;
float:left;
padding-top:7px;
}
a:hover
{
background:url(menu.jpg) no-repeat left -60px;
text-decoration:underline;
}
</style>
</head>
<body>
<div class="main">
<a href="#">Menu 1</a>
<a href="#">Menu 2</a>
<a href="#">Menu 3</a>
</div>
</body>
</html>

Edited by Anami
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