在不破坏点的情况下旋转文本

时间:2018-05-21 22:27:12

标签: css

我有一些CSS问题。我试图水平而不是垂直显示年份文本,但我确实喜欢时间轴看起来像的方式。我只想在每个点下水平显示年份文本和信息文本。任何帮助将不胜感激。当我尝试旋转文本时,它也会移动点。

div {
    font-family: Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}
.timeline {
    width: 400px;
}
.timeline .timeline-item {
    width: 100%;
}
.timeline .timeline-item .info, .timeline .timeline-item .year {
    color: #eee;
    display: block;
    float:left;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
.timeline .timeline-item.close .info, .timeline .timeline-item.close .year {
    color: #ccc;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
.timeline .timeline-item .year {
    font-size: 24px;
    font-weight: bold;
    width: 22%;
}
.timeline {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);/** Chrome & Safari **/
    -o-transform: rotate(-90deg); /** Opera **/
    -moz-transform: rotate(-90deg); /** Firefox **/
    
    margin-top: 200px;
}
.timeline .timeline-item .info {
    width: 100%;
    width: 78%;
    margin-left: -2px;
    padding: 0 0 40px 35px;
    border-left: 4px solid #aaa;
    font-size: 14px;
    line-height: 20px;
}
.timeline .timeline-item .marker {
    background-color: #fff;
    border: 4px solid #aaa;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    display: block;
    float: right;
    margin-right: -14px;
    z-index: 2000;
    position: relative;
}
.timeline .timeline-item.active .info, .timeline .timeline-item:hover .info {
    color: #444;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
.timeline .timeline-item.active .year, .timeline .timeline-item:hover .year {
    color: #9DB668;
}
.timeline .timeline-item .marker .dot {
    background-color: white;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    display: block;
    border: 4px solid white;
    height: 12px;
    width: 12px;
    border-radius: 100px;
    float: right;
    z-index: 2000;
    position: relative;
}
.timeline .timeline-item.active .marker .dot, .timeline .timeline-item:hover .marker .dot {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    background-color: #9DB668;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}
<!-- You will need to convert css to LESS -->
<div class="timeline">
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">That song the artist formerly known as prince sang no longer applies.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason: Rob Ford takes a good goddamn photo.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">That song the artist formerly known as prince sang no longer applies.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">That song the artist formerly known as prince sang no longer applies.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.</div>
    </div>
</div>

1 个答案:

答案 0 :(得分:0)

您可以旋转年份,然后使用绝对位置调整点:

div {
    font-family: Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}
.timeline {
    width: 400px;
}
.timeline .timeline-item {
    width: 100%;
}
.timeline .timeline-item .info, .timeline .timeline-item .year {
    color: #eee;
    display: block;
    float:left;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
.timeline .timeline-item.close .info, .timeline .timeline-item.close .year {
    color: #ccc;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
.timeline .timeline-item .year {
    font-size: 24px;
    font-weight: bold;
    width: 22%;
    transform: rotate(90deg);
    position:relative;
    text-align:center;
}
.timeline {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);/** Chrome & Safari **/
    -o-transform: rotate(-90deg); /** Opera **/
    -moz-transform: rotate(-90deg); /** Firefox **/
    
    margin-top: 200px;
}
.timeline .timeline-item .info {
    width: 100%;
    width: 78%;
    margin-left: -2px;
    padding: 0 0 40px 35px;
    border-left: 4px solid #aaa;
    font-size: 14px;
    line-height: 20px;
}
.timeline .timeline-item .marker {
    background-color: #fff;
    border: 4px solid #aaa;
    height: 20px;
    width: 20px;
    border-radius: 100px;
    display: block;
    z-index: 2000;
    position: absolute;
    top: -150%;
    left: calc(50% - 15px);
}
.timeline .timeline-item.active .info, .timeline .timeline-item:hover .info {
    color: #444;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
.timeline .timeline-item.active .year, .timeline .timeline-item:hover .year {
    color: #9DB668;
}
.timeline .timeline-item .marker .dot {
    background-color: white;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    display: block;
    border: 4px solid white;
    height: 12px;
    width: 12px;
    border-radius: 100px;
    float: right;
    z-index: 2000;
    position: relative;
}
.timeline .timeline-item.active .marker .dot, .timeline .timeline-item:hover .marker .dot {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    background-color: #9DB668;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}
<!-- You will need to convert css to LESS -->
<div class="timeline">
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">That song the artist formerly known as prince sang no longer applies.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason: Rob Ford takes a good goddamn photo.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">That song the artist formerly known as prince sang no longer applies.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">That song the artist formerly known as prince sang no longer applies.</div>
    </div>
    <div class="timeline-item">
        <div class="year">2008 <span class="marker"><span class="dot"></span></span>
        </div>
        <div class="info">The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.The in-house Gawker chat room is filled with photos of Rob Ford, and for one reason.</div>
    </div>
</div>