如何更改我的 twitter 小部件以具有响应高度
Posted
技术标签:
【中文标题】如何更改我的 twitter 小部件以具有响应高度【英文标题】:How do I change my twitter widget to have a responsive height 【发布时间】:2018-08-30 08:27:17 【问题描述】:我正在使用 react-twitter-widgets 在我的应用程序中嵌入 twitter 时间线。目前,一切都正确呈现,但是,时间线高度延伸到整个页面。如何获取小部件高度以便它只占用可用的视图高度?
主仪表板的底层 DOM 结构是:
<div className="col-md-9 ml-sm-auto col-lg-10 pt-2 px-3">
<div className="row">
<div className="col">
<TitleBar title=this.props.ticker status=this.props.status/>
</div>
</div>
<div className="row">
<div className="col-lg-8">
<div className="row">
<div className="col-lg-12 mb-2">
<div className="card border-0">
<div className="card-body">
<Chart chart=this.props.predictionChart />
</div>
</div>
</div>
<div className="col-lg-6">
<div className="card border-0">
<div className="card-body">
<Chart chart=this.props.errorChart/>
</div>
</div>
</div>
<div className="col-lg-6">
<div className="card border-0">
<div className="card-body">
<Chart chart=this.props.volumeChart />
</div>
</div>
</div>
</div>
</div>
<div className="col-lg-4">
<TwitterCard href=this.props.twitter ticker=this.props.ticker/>
</div>
</div>
</div>
TwitterCard 采用以下格式:
import React from "react";
import Timeline from 'react-twitter-widgets';
export class TwitterCard extends React.Component
constructor(props)
super();
this.state =
ticker: props.ticker,
href: props.href
render()
return (
<Timeline dataSource=sourceType: 'URL', url: this.props.href/>
)
主要/唯一的css文件如下:
body
font-size: .875rem;
background-color: #f7f7f7;
/*
* Title bar
*/
.title-bar
padding-right: 15px;
/*
* Connection status
*/
#connection-status
height: 20px;
width: 20px;
border-radius: 50%;
-webkit-border-radius: 50%;
display: block;
#connection-status.connected
background-color: green;
#connection-status.disconnected
background-color: red;
/*
* Sidebar
*/
.sidebar
position: fixed;
top: 0;
bottom: 0;
left: 0;
z-index: 100; /* Behind the navbar */
padding: 0;
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
.sidebar-sticky
position: sticky;
top: 48px; /* Height of navbar */
height: calc(100vh - 48px);
padding-top: .5rem;
overflow-x: hidden;
.sidebar .nav-link
font-weight: 500;
color: #333;
.sidebar .nav-link
margin-right: 4px;
color: #999;
.sidebar .nav-link.active
color: #007bff;
.sidebar .nav-link:hover,
.sidebar .nav-link.active
color: inherit;
.sidebar-heading
font-size: .75rem;
text-transform: uppercase;
/*
* Navbar
*/
.navbar-brand
padding-top: .75rem;
padding-bottom: .75rem;
font-size: 1rem;
background-color: rgba(0, 0, 0, .25);
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
.navbar .form-control
padding: .75rem 1rem;
border-width: 0;
border-radius: 0;
.form-control-dark
color: #fff;
background-color: rgba(255, 255, 255, .1);
border-color: rgba(255, 255, 255, .1);
.form-control-dark:focus
border-color: transparent;
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
.full-screen
height: 100vh !important;
/*
* Utilities
*/
.border-top border-top: 1px solid #e5e5e5;
.border-bottom border-bottom: 1px solid #e5e5e5;
【问题讨论】:
【参考方案1】:请指定用于呈现小部件的 javascript。如果和下图一样,可以在属性内调整高度。
ReactDOM.render((
<Timeline
dataSource=
sourceType: 'profile',
screenName: 'twitterdev'
options=
username: 'TwitterDev',
height: '400'
onLoad=() => console.log('Timeline is loaded!')
/>
【讨论】:
不会设置固定高度为 400 吗?而不是随页面调整? 是的,会的。您必须使用 vh 或 % 来设置相对高度。 当我使用100vh
时,这个小部件还是有点太大了。
我的偏好是它与图表底部一致。
检查小部件的外部元素并相应地设置高度。以上是关于如何更改我的 twitter 小部件以具有响应高度的主要内容,如果未能解决你的问题,请参考以下文章