【发布时间】:2016-08-22 08:08:31
【问题描述】:
我有几个网站访问者报告缺少一些文本。原来他们安装了广告拦截器,并且缺少的文本链接到发布带有自定义 CSS 类名称的推文。以下是消失的示例:
<a href="https://twitter.com/intent/tweet?text=xxxx&url=http%3A%2F%2Fxxxx" class="tweet_quote">The text that disappears.</a>
这是 tweet_quote 类的定义:
.tweet_quote {
color: black;
text-decoration: none;
background-image: url(images/Twitter_logo_blue_32.png);
background-repeat: no-repeat;
background-position: right;
background-size: 20px 20px;
transition: .2s;
padding-right: 20px;
}
.tweet_quote:hover {
color: white !important;
background-color: #56aeec;
background-image: url(images/Twitter_logo_white_32.png);
}
Twitter_logo png 也被广告拦截器拦截。实际页面地址为https://skeptoid.com/episodes/4516
有人看到里面有什么东西可能会触发广告拦截器吗?
【问题讨论】: