CSS 悬停以更改其他元素

发布于 2024-12-08 08:41:59 字数 1802 浏览 0 评论 0原文

我有一个用 CSS 完成的导航栏,我希望这样当我将鼠标悬停在 3 个导航图标之一上时,它会更改主图像背景位置。

我尝试了几种方法,但未能使它们正常工作。

CSS

    /* Nav Button 1 */

.nav1 {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
}

#nav1
{
  display: block;
  width: 92px;
  height: 107px;
  background: url("images/triangle.png") no-repeat 0 0;

}

#nav1:hover
{ 
  background-position: 0 -107px;
}


/* Nav Button 2 */

.nav2 {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
    padding-right: 0px;
}

#nav2
{
  display: block;
  width: 92px;
  height: 107px;
  background: url("images/triangle.png") no-repeat 0 0;

}

#nav2:hover
{ 
  background-position: 0 -107px;
}

/* Nav Button 3 */

.nav3 {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
    padding-right: 0px;
}

#nav3
{
  display: block;
  width: 92px;
  height: 107px;
  background: url("images/triangle.png") no-repeat 0 0;

}

#nav3:hover
{ 
  background-position: 0 -107px;
}

/* Nav Name */

.navname {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
    padding-right: 0px;
}

#navname
{
  display: block;
  width: 228px;
  height: 81px;
  background: url("images/blank.png") no-repeat 0 0;

}

HTML

<div id="navigation">
    <div class="nav1">
    <a id="nav1" href="#"></a>
    </div>
    <div class="nav2">
    <a id="nav2" href="#"></a>
    </div>
    <div class="nav3">
    <a id="nav3" href="#"></a>
    </div>
    <div class="navname"><a id="navname" href="#"></a>
    </div>
</div>

有什么想法可以做到这一点吗? “navname”元素是当鼠标悬停在 nav1、nav2、nav3 上时我想要更改的背景位置。

谢谢:D

I have this navigation bar which I have done in CSS, I would like it so when I hover over one of the 3 navigation icons it will change the main image background position.

I've tried a few ways but not managed to get them to work properly.

CSS

    /* Nav Button 1 */

.nav1 {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
}

#nav1
{
  display: block;
  width: 92px;
  height: 107px;
  background: url("images/triangle.png") no-repeat 0 0;

}

#nav1:hover
{ 
  background-position: 0 -107px;
}


/* Nav Button 2 */

.nav2 {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
    padding-right: 0px;
}

#nav2
{
  display: block;
  width: 92px;
  height: 107px;
  background: url("images/triangle.png") no-repeat 0 0;

}

#nav2:hover
{ 
  background-position: 0 -107px;
}

/* Nav Button 3 */

.nav3 {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
    padding-right: 0px;
}

#nav3
{
  display: block;
  width: 92px;
  height: 107px;
  background: url("images/triangle.png") no-repeat 0 0;

}

#nav3:hover
{ 
  background-position: 0 -107px;
}

/* Nav Name */

.navname {
    float:left;
    padding-top:20px;
    border:none;
    outline:none;
    padding-right: 0px;
}

#navname
{
  display: block;
  width: 228px;
  height: 81px;
  background: url("images/blank.png") no-repeat 0 0;

}

HTML

<div id="navigation">
    <div class="nav1">
    <a id="nav1" href="#"></a>
    </div>
    <div class="nav2">
    <a id="nav2" href="#"></a>
    </div>
    <div class="nav3">
    <a id="nav3" href="#"></a>
    </div>
    <div class="navname"><a id="navname" href="#"></a>
    </div>
</div>

Any ideas how this can be done? The 'navname' element is background position I want to change when hovering over either nav1, nav2, nav3.

Thanks :D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

羁〃客ぐ 2024-12-15 08:41:59

使用 jQuery 这非常简单:

$('element-to-initiate-change').hover(function(){
    //this will happen when your mouse moves over the object
    $('element-to-change').css({
        "property":"value",
        "property":"value",
    });
},function(){
    //this is what will happen when you take your mouse off the object
    $('element-to-change').css({
        "property":"value",
        "property":"value",
    });
});

这是一个示例: http://jsfiddle.net/dLbDF/258/

如果您使用您的代码制作了 jsfiddle,我会对您的代码执行此操作,以便您可以看得更清楚。提问时始终使用 jsfiddle 或其他类型的示例。

This is quite simple using jQuery:

$('element-to-initiate-change').hover(function(){
    //this will happen when your mouse moves over the object
    $('element-to-change').css({
        "property":"value",
        "property":"value",
    });
},function(){
    //this is what will happen when you take your mouse off the object
    $('element-to-change').css({
        "property":"value",
        "property":"value",
    });
});

Here is an example: http://jsfiddle.net/dLbDF/258/

If you made a jsfiddle using your code, I would've done this to your code so you could see clearer. Always use jsfiddle or some other kind of example when asking a question.

往日情怀 2024-12-15 08:41:59

老问题了,但对于遇到这个问题的其他人来说,这里有一个可能的仅 CSS 解决方案。

https://jsfiddle.net/Hastig/ancwqda3/

html

<div id="navigation">
    <a class="nav n1" href="#"></a>
    <a class="nav n2" href="#"></a>
    <a class="nav n3" href="#"></a>

    <a class="title t0" href="#"></a>
    <a class="title t1" href="#">one</a>
    <a class="title t2" href="#">two</a>
    <a class="title t3" href="#">three</a>
</div>

CSS

.nav {
    display: inline-block;
    float: left;
    padding-top: 0px;
    width: 92px;
    height: 107px;
    background: url("http://dl.dropbox.com/u/693779/triangle.png") no-repeat 0 0;
}

.nav:hover { 
  background-position: 0 -107px;
}

.title {
    width: 228px;
    height: 107px;
    background: url("http://dl.dropbox.com/u/693779/blank.png") no-repeat 0 0;
    color: red;    font-weight: bold;
    text-decoration: none;
    font-size: 40px;    line-height: 107px;
    text-align: center;
}

.t0 {
    display: inline-block;
}

.t1, .t2, .t3 {
    display: none;
}

.nav:hover ~ .t0 {
    display: none;
}

.n1:hover ~ .t1, .n2:hover ~ .t2, .n3:hover ~ .t3 {
    display: inline-block;
}

Old question but here's a possible CSS-only solution for others who come across it.

https://jsfiddle.net/Hastig/ancwqda3/

html

<div id="navigation">
    <a class="nav n1" href="#"></a>
    <a class="nav n2" href="#"></a>
    <a class="nav n3" href="#"></a>

    <a class="title t0" href="#"></a>
    <a class="title t1" href="#">one</a>
    <a class="title t2" href="#">two</a>
    <a class="title t3" href="#">three</a>
</div>

css

.nav {
    display: inline-block;
    float: left;
    padding-top: 0px;
    width: 92px;
    height: 107px;
    background: url("http://dl.dropbox.com/u/693779/triangle.png") no-repeat 0 0;
}

.nav:hover { 
  background-position: 0 -107px;
}

.title {
    width: 228px;
    height: 107px;
    background: url("http://dl.dropbox.com/u/693779/blank.png") no-repeat 0 0;
    color: red;    font-weight: bold;
    text-decoration: none;
    font-size: 40px;    line-height: 107px;
    text-align: center;
}

.t0 {
    display: inline-block;
}

.t1, .t2, .t3 {
    display: none;
}

.nav:hover ~ .t0 {
    display: none;
}

.n1:hover ~ .t1, .n2:hover ~ .t2, .n3:hover ~ .t3 {
    display: inline-block;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文