帮忙找到一个可以处理图像的 jQuery Marquee 吗?

发布于 2024-10-28 02:06:41 字数 123 浏览 1 评论 0原文

我到处都见过这些 jQuery 字幕插件,但它们所做的只是滚动文字。

我可以使用 HTML 和 CSS 来让它们显示个人资料图片、人员姓名和最后发布的帖子吗?

可以做到这一点还是我需要一个不同的插件?

I have seen all these jQuery marquee plugins all over the place but all they do is scroll words.

Can I use HTML and CSS to make them show say a Profile picture, the persons name, and thir last post?

Can that be done or do I need a different plugin for that?

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

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

发布评论

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

评论(3

浅忆流年 2024-11-04 02:06:41

只要它们使用 overflow:hidden 对元素内的内部元素进行动画处理,您就应该能够在其中放置您想要的内容,包括图像。

As long as they are animating an inner element within an element with overflow: hidden, you should be able to put what you want in there, including an image.

慕烟庭风 2024-11-04 02:06:41

我最近用过这个: http://www.vegabit.com/jquery_scroller/

你可以放任何东西你想要在滚动条中

<script type="text/javascript">
    $(function () {
        // initialize scrollable
        $('.horizontal_scroller').SetScroller({ velocity: 85,
            direction: 'horizontal',
            startfrom: 'right',
            loop: 'infinite',
            movetype: 'linear',
            onmouseover: 'pause',
            onmouseout: 'play',
            onstartup: 'play',
            cursor: 'pointer'
        });
    });

</script>
<div class="horizontal_scroller" id="no_mouse_events">
     <div class="users">
           <div class="user">
                <div><img src="" /></div>
                <div>Name: </div>
                <div class="lastpost"></div>
           </div>
           <div class="user">
                <div><img src="" /></div>
                <div>Name: </div>
                <div class="lastpost"></div>
           </div>
           <div class="user"><
                <div><img src="" /></div>
                <div>Name: </div>
                <div class="lastpost"></div>
           </div>
     </div>
</div>

I recently used this one: http://www.vegabit.com/jquery_scroller/

You can put anything you want in the scroller

<script type="text/javascript">
    $(function () {
        // initialize scrollable
        $('.horizontal_scroller').SetScroller({ velocity: 85,
            direction: 'horizontal',
            startfrom: 'right',
            loop: 'infinite',
            movetype: 'linear',
            onmouseover: 'pause',
            onmouseout: 'play',
            onstartup: 'play',
            cursor: 'pointer'
        });
    });

</script>
<div class="horizontal_scroller" id="no_mouse_events">
     <div class="users">
           <div class="user">
                <div><img src="" /></div>
                <div>Name: </div>
                <div class="lastpost"></div>
           </div>
           <div class="user">
                <div><img src="" /></div>
                <div>Name: </div>
                <div class="lastpost"></div>
           </div>
           <div class="user"><
                <div><img src="" /></div>
                <div>Name: </div>
                <div class="lastpost"></div>
           </div>
     </div>
</div>
青芜 2024-11-04 02:06:41

您应该能够通过对此进行一些小的更改来完成您想要做的事情:

http://remysharp .com/demo/marquee.html

You should be able to accomplish what you're trying to do with some minor changes to this:

http://remysharp.com/demo/marquee.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文