我正在尝试自定义新的Twitter小部件,但是有一些CSS的问题,似乎无法覆盖这个新的。我已经尝试过搜索解决方案,但找不到任何匹配。
Here's my page右侧导航中的小部件和.timeline类的调整后的CSS:
.timeline {
margin-bottom:0;
border:0 !important;
border-radius:0 !important;
-webkit-border-radius:0;
-moz-border-radius:0;
}
HTML:
<div class="bg">
<h3 class="twitter">Twitter News</h3>
<div id="twitter">
<a class="twitter-timeline" href="https://twitter.com/" data-widget-id="268336500536647680">Tweets by </a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div></div>
我已经开始使用!important声明并尝试使用主#twitter id覆盖,但都不起作用。
任何想法都非常感激。
**我显然需要以某种方式编辑iframe,但不确定如何 - 如果有人更清楚地知道如何使用我的代码(而不是教程)来做到这一点会很棒。我还需要更改iframe宽度..
答案 0 :(得分:25)
我设法使用javascript(我在我的应用程序中使用jQuery!)。你必须在iframe加载后应用样式(我没有找到有效的“加载”事件,所以我使用了一个轮询策略。)
// Customize twitter feed
var hideTwitterAttempts = 0;
function hideTwitterBoxElements() {
setTimeout( function() {
if ( $('[id*=twitter]').length ) {
$('[id*=twitter]').each( function(){
if ( $(this).width() == 220 ) {
$(this).width( 198 ); //override min-width of 220px
}
var ibody = $(this).contents().find( 'body' );
ibody.width( $(this).width() + 20 ); //remove scrollbar by adding width
if ( ibody.find( '.timeline .stream .h-feed li.tweet' ).length ) {
ibody.find( '.timeline' ).css( 'border', 0 );
ibody.find( '.timeline .stream' ).css( 'overflow-x', 'hidden' );
ibody.find( '.timeline .stream' ).css( 'overflow-y', 'scroll' );
ibody.find( '.timeline-header').hide();
ibody.find( '.timeline-footer').hide();
}
else {
$(this).hide();
}
});
}
hideTwitterAttempts++;
if ( hideTwitterAttempts < 3 ) {
hideTwitterBoxElements();
}
}, 1500);
}
// somewhere in your code after html page load
hideTwitterBoxElements();
答案 1 :(得分:7)
对于任何感兴趣的人来说,这都没有jQuery。
更新了更好的解决方案,不依赖于轮询,因此偶尔也没有无格式布局:
twttr.events.bind('rendered',function(){
[].slice.call(document.querySelectorAll('iframe.twitter-timeline')).forEach(function(e,i,a){
var fE = e.contentDocument.getElementsByClassName('timeline-footer');
if(fE.length){
fE[0].style.backgroundColor='transparent';
}
});
});
旧版本:
// Customize twitter feed
var hideTwitterAttempts = 0;
function hideTwitterBoxElements() {
setTimeout( function() {
var list = document.getElementsByTagName('iframe');
if (list.length ) {
Array.prototype.forEach.call(
list,
function(element){
var footerE = element.contentDocument.getElementsByClassName('timeline-footer')[0];
footerE.style.backgroundColor="transparent";
});
}
hideTwitterAttempts++;
if ( hideTwitterAttempts < 3 ) {
hideTwitterBoxElements();
}
}, 1500);
}
hideTwitterBoxElements();
答案 2 :(得分:6)
我调整了来自@Sebastiaan Ordelman的代码,并添加了一些注释(指旧API中的值)。这是我尝试在短时间内匹配旧API。将此代码放在新的复制并粘贴新的Twitter小部件代码之后。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script>
var hideTwitterAttempts = 0;
function hideTwitterBoxElements() {
setTimeout( function() {
if ( $('[id*=twitter]').length ) {
$('[id*=twitter]').each( function(){
var ibody = $(this).contents().find( 'body' );
if ( ibody.find( '.timeline .stream .h-feed li.tweet' ).length ) {
ibody.find( '.customisable-border' ).css( 'border', 0 );
ibody.find( '.timeline' ).css( 'background-color', '#004A7B' ); //theme: shell: background:
ibody.find( 'ol.h-feed' ).css( 'background-color', '#0575A1' ); //theme: tweets: background:
ibody.find( 'ol.h-feed' ).css( 'border-radius', '5px 5px 5px 5px' );
ibody.find( 'li.tweet' ).css( 'border-bottom', '1px dotted #FFFFFF' ); //theme: tweets: color:
ibody.find( 'li.tweet' ).css( 'color', '#FFFFFF' ); //theme: tweets: color:
ibody.find( '.customisable:link' ).css( 'color', '#07E0EB' ); //theme: tweets: links:
ibody.find( '.footer' ).css( 'visibility', 'hidden' ); //hide reply, retweet, favorite images
ibody.find( '.footer' ).css( 'min-height', 0 ); //hide reply, retweet, favorite images
ibody.find( '.footer' ).css( 'height', 0 ); //hide reply, retweet, favorite images
ibody.find( '.avatar' ).css( 'height', 0 ); //hide avatar
ibody.find( '.avatar' ).css( 'width', 0 ); //hide avatar
ibody.find( '.p-nickname' ).css( 'font-size', 0 ); //hide @name of tweet
ibody.find( '.p-nickname' ).css( 'visibility', 'hidden' ); //hide @name of tweet
ibody.find( '.e-entry-content' ).css( 'margin', '-25px 0px 0px 0px' ); //move tweet up (over @name of tweet)
ibody.find( '.dt-updated' ).css( 'color', '#07E0EB' ); //theme: tweets: links:
ibody.find( '.full-name' ).css( 'margin', '0px 0px 0px -35px' ); //move name of tweet to left (over avatar)
ibody.find( 'h1.summary' ).replaceWith( '<h1 class="summary"><a class="customisable-highlight" title="Tweets from fundSchedule" href="https://twitter.com/fundschedule" style="color: #FFFFFF;">fundSchedule</a></h1>' ); //replace Tweets text at top
ibody.find( '.p-name' ).css( 'color', '#07E0EB' ); //theme: tweets: links:
}
else {
$(this).hide();
}
});
}
hideTwitterAttempts++;
if ( hideTwitterAttempts < 3 ) {
hideTwitterBoxElements();
}
}, 1500);
}
// somewhere in your code after html page load
hideTwitterBoxElements();
</script>
答案 3 :(得分:5)
这并没有直接回答问题的CSS方面,但我认为值得注意的是,你想要的一些内容(例如隐藏边框/标题)可以使用窗口小部件中传递的数据属性来完成: / p>
<a class="twitter-timeline" href="https://twitter.com/twitterapi"
data-widget-id="YOUR-WIDGET-ID-HERE"
data-theme="dark"
data-chrome="noheader nofooter noborders noscrollbar transparent"
data-link-color="#cc0000"
width="200"
height="300"
>Tweets by @twitterapi</a>
https://dev.twitter.com/docs/embedded-timelines#customization
也许在可能的情况下最大限度地减少javascript arm wrestling有一个性能优势?
答案 4 :(得分:3)
他们创建了一个iframe,因此它是另一个文档。
你不能在另一个文档中设置元素的样式,所以除非twitter提供了一个钩子来将你自己的样式表嵌入到iframe中,否则它是不可能的。
Twitter仅允许样式the link color of the widget并选择明/暗主题。
或者,您可以使用twitter API创建自己的小部件,然后您可以根据需要设置样式..
答案 5 :(得分:1)
当问到这个问题时,我不知道当时是否可能,但现在是,请查看docs:
<a class="twitter-timeline" data-chrome="nofooter" ....">Tweets</a>
答案 6 :(得分:0)
如上所述,你不能在不同的iframe中更改CSS,这里有一些信息:
http://www.jquery4u.com/dom-modification/jquery-change-css-iframe-content/
答案 7 :(得分:0)
使用twitters事件结构可能更好。
根据https://dev.twitter.com/web/javascript/loading
<script>window.twttr = (function (d, s, id) {
var t, js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src= "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
return window.twttr || (t = { _e: [], ready: function (f) { t._e.push(f) } });
}(document, "script", "twitter-wjs"));</script>
并且每https://dev.twitter.com/web/javascript/events你的事件和连接看起来像这样(请记住这个例子使用jquery你可以选择仅javascript方法)
twttr.ready( function(twttr){
twttr.events.bind("rendered", function(tw_event){
var tw_iframe = ev.target;
//the following is custom jquery code to do various
//css overrides based on selectors
var twitterbody = $(tw_iframe).contents().find( 'body' );
twitterbody.find(".avatar").hide();
twitterbody.find("li.tweet").css({padding: "2px"});
});
});