使用背景位置将背景分布到多个项目

发布于 2024-11-08 05:01:37 字数 568 浏览 0 评论 0原文

所以我正在努力实现一个应该很漂亮的效果。我有一堆高度为 40px 的 li。我想要显示一个背景图像,以便顶部 40px 是第一个 li 的背景,接下来的 40px 是第二个的背景......等等......

目前它只会显示图像的顶部部分,我无法让 bgCount 递增...有什么建议吗?

        var bgCount = 0;
        $('li').each(function(i) {                
           $(this).css('background-image', 'url(forground.jpg)');
           $(this).css('background-position', '0px' + bgCount + 'px');
           bgCount += 40;
        });

JSfiddle: http://jsfiddle.net/yZDDK/4/

So I am working what should be a nifty effect. I have a bunch of li's of height 40px. I want a background image to display so that the top 40px is the background for the first li, the next 40px is the background for the second one... etc etc...

currently it will only show the top section of the image, I cannot get bgCount to increment... Any suggestions?

        var bgCount = 0;
        $('li').each(function(i) {                
           $(this).css('background-image', 'url(forground.jpg)');
           $(this).css('background-position', '0px' + bgCount + 'px');
           bgCount += 40;
        });

JSfiddle: http://jsfiddle.net/yZDDK/4/

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

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

发布评论

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

评论(2

难理解 2024-11-15 05:01:37

你少了一个空格

       $(this).css('background-position', '0px ' + bgCount + 'px');
                                              ^

You're missing a space

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