html5 - css3 线性渐变实现间断线条效果
怪我咯
怪我咯 2017-04-17 13:30:33
0
5
544


上图是我现做出来的效果!但是这个效果和我想要的还有差别,对比下面我要的效果图

我使用线性渐变做的,可是渐变带有渐变效果,有没有某种技巧让中间个文字交接的地方没有渐变效果呢?
css代码:

hr {
                text-align:center;
                box-sizing: content-box;
                height: 1px;
                border: 0;
                /*border-top: 1px solid #808080;*/
                width: 90%;
                margin-bottom: 20px;
                background-image: linear-gradient(to right,#808080,#808080, rgba(0, 0, 0, 0),rgba(0, 0, 0, 0),#808080, #808080);
            }
            
            hr.style-eight:after {
                content: "第三方登陆";
                display: inline-block;
                position: relative;
                top: -0.7em;
                color: #808080;
                /*background-color: #1D263B;*/
                padding: 0 10px;
            }

html代码:

<hr class="style-eight">
怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(5)
左手右手慢动作

If your focus is on linear-gradient, you can write it like this without using pseudo elements
background-image: linear-gradient(to right, #fb3 40%, #58a 0,#58a 60% , #fb3 0);

巴扎黑

Use pseudo-element: after :before

左手右手慢动作

If you don’t add gradient, there will be nothing

洪涛

Why should we insist on gradient? Just use a long line and make a square p for the "third-party login" in the middle. The background color should be the same as the background color behind it. Just cover the middle of the line segment.

PHPzhong

My final solution:
Click to view
html code:

<p class="style-eight">
                    第三方登陆
                </p>

css code:

.style-eight {
                box-sizing: content-box;
                margin-bottom: 20px;
            }
            
            .style-eight:after {
                content: "";
                display: inline-block;
                position: relative;
                top: -6px;
                padding: 0 10px;
                width: 20%;
                height: 1px;
                background-image: linear-gradient(to right, #808080, #808080);
            }
            
            .style-eight:before {
                content: "";
                display: inline-block;
                position: relative;
                top: -6px;
                padding: 0 10px;
                width: 20%;
                height: 1px;
                background-image: linear-gradient(to right, #808080, #808080);
            }
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!