更改 Twitter 源中的 Twitter 徽标

发布于 2025-01-02 17:29:04 字数 1413 浏览 0 评论 0原文

您好,我有一个使用以下代码的 Twitter 提要:

<script src="http://widgets.twimg.com/j/2/widget.js"></script>
        <script>
        new TWTR.Widget({
          version: 2,
          type: 'profile',
          rpp: 3,
          interval: 6000,
          width: 195,
          height: 300,
          theme: {
            shell: {
              background: '#999999',
              color: '#D6E03D'
            },
            tweets: {
              background: '#f3f3f3',
              color: '#999999',
              links: '#5a5a5a'
            }
          },
          features: {
            scrollbar: false,
            loop: false,
            live: false,
            hashtags: true,
            timestamp: true,
            avatars: false,
            behavior: 'all'
          }
        }).render().setUser('louise').start();


        </script>

这链接到 widget.js 文件。我需要默认的 Twitter 是蓝色而不是白色,所以我尝试下载 js 文件并从我的服务器托管它,并使用以下代码将代码更改为我的图像:

isFullScreen?" twtr-fullscreen":""}var AA=T?"images/widget-logoblue.png":"http://widgets.twimg.com/i/widget-logo.png";

这会添加蓝色图像,但它会弄乱一些链接feed 中应该有不同的颜色,因此我认为我需要坚持链接到这个版本:

isFullScreen?" twtr-fullscreen":""}var AA=T?"images/widget-logoblue.png":"http://widgets.twimg.com/i/widget-logo.png";

有没有办法可以链接到这个版本,但用我自己的 Twitter 徽标覆盖他们使用的 Twitter 图像? 任何帮助将不胜感激,谢谢 路易丝

Hi I have a twitter feed using the following code:

<script src="http://widgets.twimg.com/j/2/widget.js"></script>
        <script>
        new TWTR.Widget({
          version: 2,
          type: 'profile',
          rpp: 3,
          interval: 6000,
          width: 195,
          height: 300,
          theme: {
            shell: {
              background: '#999999',
              color: '#D6E03D'
            },
            tweets: {
              background: '#f3f3f3',
              color: '#999999',
              links: '#5a5a5a'
            }
          },
          features: {
            scrollbar: false,
            loop: false,
            live: false,
            hashtags: true,
            timestamp: true,
            avatars: false,
            behavior: 'all'
          }
        }).render().setUser('louise').start();


        </script>

and this is linked to the widget.js file. I need the default twitter to be blue not white so I tried downloading the js file and hosting it from my server and changing the code to my image using this code:

isFullScreen?" twtr-fullscreen":""}var AA=T?"images/widget-logoblue.png":"http://widgets.twimg.com/i/widget-logo.png";

this adds the blue image in ok but it messes up some of the links that should be different colours within the feed, therefore I think I need to stick to linking to this version:

isFullScreen?" twtr-fullscreen":""}var AA=T?"images/widget-logoblue.png":"http://widgets.twimg.com/i/widget-logo.png";

is there a way I can link to this but override the twitter image that they are using with my own twitter logo?
Any help would be greatly appreciated, thanks
Louise

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

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

发布评论

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

评论(1

柠檬 2025-01-09 17:29:04

我想解决方案可能是其中之一:

  1. CSS hack - 隐藏图像并使用背景图像 CSS 属性代替
  2. 检测加载图像并替换它然后
  3. 编写自定义小部件。 示例

I guess the solution might be one of these:

  1. CSS hack - hide image and use background-image CSS property instead
  2. Detect image on load and replace it then
  3. Write a custom widget. Example.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文