开发者

Background-position in css

开发者 https://www.devze.com 2023-01-04 09:58 出处:网络
Can we use more than 2 images for single navigatio开发者_运维技巧n. That means when we hover on that image it will shows 6 different images. Is it possible to make for a single navigation image? If po

Can we use more than 2 images for single navigatio开发者_运维技巧n. That means when we hover on that image it will shows 6 different images. Is it possible to make for a single navigation image? If possible means how?

I think you are all understand this

alt text http://img714.imageshack.us/img714/2786/mubeen.gif


If I understood you correctly, you want to continously change the position of your background image while you hover over one button.

If that's right, then I suggest making a static image as background image and changing the image to a GIF animated image on hover


You can (at the moment - cross browser) only set one bg image on an element. If you want to change it on hover or whatever, just add an a-tag with href set on #:

<a class="img" id="thatoneimg" href="#"></a>

And then in the css:

a.img {
  width: 100px;
  height: 100px;
}
a#thatoneimg {
  backround-image: url(staticimg.jpg);
}
a#thatoneimg:hover {
  backround-image: url(movingimg.gif);
}

That should work cross browser. You need the a-tag for it to work in IE.

Edit: As Starx said, just make the second image a .gif with an animation. It will not use sprites but it will work.


If I get your question right, it's possible, but you will have to have 6 different HTML elements to contain the background image at 6 different positions.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号