0

如何在背景图像的<h1>两侧<hr/>创建居中?

我还需要它来处理各种文本长度,为移动查看很好地缩放,并<hr/>使其容器的宽度达到 100%。

我想要这个外观,但在背景图像上。 纯色背景上的文字

对于两边都有线条的文本有很多答案(这里这里这里) 但它们都依赖于在文本后面使用纯色背景色,这对我来说不起作用,因为我想把这个on 有一个背景图像。

这是我实现上述外观的方法,它可以很好地处理各种长度的文本和缩放:

CSS

.title-box {
    height: 2px; 
    background-color: rgb(215, 0, 0); 
    text-align: center;
}
.title-outer {
    background-color:rgb(230, 230, 230); 
    position: relative; 
    top: -0.7em;
}
.title-inner {
    margin:0px 20px; 
    font-size: 17.5px; 
    font-weight:bold; 
    color:rgb(100, 100, 100);
}

HTML

<div class="title-box">
    <span class="title-outer">
        <span class="title-inner">OUR STORY</span>
    </span>
</div>

我已经尝试过下面的方法,它有点工作,但它不能处理各种文本宽度或缩放,因为s<h1><hr/>s 在单独<div>的 s 中:

背景图像上的文字

HTML

<div class="row">
    <div class="span4"><hr /></div>
    <div class="span4"><h4>OUR STORY</h4></div>
    <div class="span4"><hr /></div>
</div>

注意:这是使用 Bootstrap 网格系统的示例,但这不是问题/解决方案的一部分。

那么有什么想法可以让我获得相同的外观和行为,但没有文本的背景颜色,以便它可以位于背景图像上?

4

4 回答 4

6

不需要 JS,这里是纯 CSS 解决方案。

CSS

.title-hr hr {
    display: inline-block;
    width: 30%;
    margin: 5px 10px;
    border-top: 1px solid #e5e5e5;
}

HTML

<h1 class="title-hr"><hr />My Title<hr /></h5>

结果:http: //jsfiddle.net/yptmftr4/

于 2014-12-23T12:31:17.493 回答
2

好的,我已经用这段代码玩了一下,这是我的解决方案。是的,它有点脏,因为我用过:beforeand :after,但是可以。

HTML

<div class="title-box">
    <span id="first" class="title-inner">OUR LOOOoo oooo oOONG STORY</span>
</div>
<div class="title-box">
    <span id="second" class="title-inner">OUR STORY</span>
</div>
<div class="title-box">
    <span id="third" class="title-inner">STORY</span>
</div>

CSS

.title-box {
    text-align: center;
}
.title-inner {
    margin:0px 20px;
    font-size: 17.5px;
    font-weight:bold;
    position: relative;
    color:rgb(100, 100, 100);
}
.title-inner:after, .title-inner:before {
    content:"";
    float: right;
    position: relative;
    top: 8px;
    height: 2px;
    background: red;
}
.title-inner:before {
    float: left;
}

jQuery

$(document).ready(function () {

    function work() {
        $(".title-inner").each(function () {
            var full_width = $(window).width();
            var id = $(this).attr("id");
            var title_width = $("#" + id).width();
            var new_width = (full_width - title_width) / 2 - 40;
            $('head').append("<style>#" + id + ":before, #" + id + ":after{width:" + new_width + "px !important;}</style>");
        });
    }
    work();
    $(window).resize(function () {
        work();
    });
});

http://jsfiddle.net/ffb3X/4/

因为:before并且:after不是 DOM 的一部分,所以我使用.append()函数在每个标题的头部附加样式标签。

此代码将在页面加载时计算所有内容,因此它是响应式的。

于 2013-04-16T03:41:26.183 回答
2

此代码最初由Arbel发布,但由于某种原因他/她的答案消失了?我正在重新发布它(包括我制作的一些模组),因为它是我最终使用的解决方案。信用到期的信用。

工作 jsFiddle:http: //jsfiddle.net/pA5Gu/

HTML

<div class="title-box"> 
    <fieldset class="title-outer">
            <legend id="titleInner" class="title-inner">OUR STORY</legend>
    </fieldset>
</div>

CSS

.title-box { 
    background-image: url('http://imagezo.com/images/1302-green-bubbles-awesome-background-wallpaper.jpg');
    height:100%;
}
.title-outer {
    border-top:2px solid rgb(215, 0, 0);
    background-color: transparent;
}
.title-inner {
    width:auto;
    padding:0px 20px;
    border: 0;
    background-color: transparent;
    font-size: 17.5px; 
    font-weight:bold; 
    color:rgb(255, 255, 255);
}

jQuery

$(document).ready(function() {
    var legendWidth = $('#titleInner').outerWidth();
    var margin = 'calc((100% - '+legendWidth+'px) / 2)';
    $('#titleInner').css('margin-left', margin);
    $('#titleInner').css('margin-right', margin);
});
于 2013-04-16T03:56:58.887 回答
0

http://jsfiddle.net/habo/HrfuH/1/

<div class="title-box">
    <div class="myContent">
    <div class="title-outer"><hr /></div>
    <div class="title-inner "><h4>OUR STORY</h4></div>
    <div class="title-outer"><hr /></div>
    </div>
</div>


.myContent{
    display:block;
    width:600px;
    margin:0 auto;
}
.title-box {
    background:#eee;
    height:60px;
}
.title-outer{

}

hr {
    height: 2px;
    background-color:rgb(215, 0, 0);
    margin: 2em 0;
    width:25%;
    float:left;
}

.title-inner {
    margin:0px 20px; 
    font-size: 17.5px; 
    font-weight:bold; 
    color:rgb(100, 100, 100);
    float:left;
}
于 2013-04-16T03:24:51.710 回答