在css中设置图像可见区域

发布于 2024-10-14 10:59:10 字数 284 浏览 1 评论 0原文

我正在使用 jCarousel 制作徽标的图像滑块。因为图像不应用作背景,而应在图像标签中使用,这就是要求。因此将所有图像放入 li 标签中。 jCarousel 工作正常。

但在这里我必须默认只显示图片的一半(精灵图像[默认,鼠标悬停在图像上]),并将鼠标悬停在另一部分上。在CSS中如何设置图像位置以仅显示图片的一半并将鼠标悬停在另一半上。

请参阅屏幕截图。

在此处输入图像描述

谢谢

I am using jCarousel to make a image slider of logos. In that the image should not be used as background it should be with in the image tag, thats the requirement. So placed all images with in li tag. and the jCarousel is working fine.

But here i have to show only half of the picture(sprite image [default,mouse over image]) by default and on the mouse over another part. In css how to set up image position to show only half of the picture and on the mouse over another half.

See the screenshot.

enter image description here

Thanks

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

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

发布评论

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

评论(1

╰沐子 2024-10-21 10:59:11

首先,确保您的 li 元素设置为溢出:隐藏。
然后,将您的 img 移动到左侧,位于 li 元素之外:

var neg_width_of_individual_img = -35; //may need to change this number!

$(document).ready(function(){
  $('#slideshow img').hover(
    function(){
      $(this).css('margin-left',neg_width_of_individual_img);
    },
    function () {
      $(this).css('margin-left',0);
    }
  );
});

First, make sure that your li elements are set to overflow: hidden.
Then, move your img's to the left, outside of the li elements:

var neg_width_of_individual_img = -35; //may need to change this number!

$(document).ready(function(){
  $('#slideshow img').hover(
    function(){
      $(this).css('margin-left',neg_width_of_individual_img);
    },
    function () {
      $(this).css('margin-left',0);
    }
  );
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文