Mono-Image CSS Rollovers

本文介绍了一种使用CSS背景定位来创建图像精灵的技术,该技术可以有效地减少HTTP请求次数并避免菜单项状态变化时可能出现的闪烁问题。通过将多个图像状态整合到一个小型精灵图像中,并在鼠标悬停时改变背景位置,可以实现平滑的图像切换效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

CSS is traditionally used to create rollover effects with two or more images for menus and other elements. Menus can use on, off, or visited images to signify the state of the menu. Typically menus are created using multiple background images, however. The problem with this method is that it doubles the necessary HTTP requests and can cause flickering problems when the "off" image is not preloaded. A better way is to combine the on and off state images into one mini-sprite and switch the background position on rollover (see Figure 1).

multi-image rollover sprite

Figure 1: Multiple-image Rollover Sprite

Figure 1 shows the on and off image mini-sprite (enlarged for easier viewing). To display the on and off portion of our image we just need to change the background position in our menu. Here is the code:

a:link, a:visited {
  display: block;
  width: 127px;
   height:25px;
  line-height: 25px;
  color: #000;
  text-decoration: none;
  background: #fc0 url(image-rolloverdual.png) no-repeat left top;
  text-indent: 25px;
  color: #000;
}
a:hover {
  /* background: #c00; */
  background-position: right top;
  color: #fff;
}

The background in the off state (:link) positions the background image to the left and top showing the off state portion of the image. On rollover (:hover) the background position is shifted to the right displaying the “on” portion of the background image. The width value effectively clips the image to show only the portion of the image that you want displayed. You can also use this technique to highlight visited links. For extra credit, create the above effect entirely with CSS.

Here is the finished version of the dual rollover.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值