我想使用css在this page上的文本字段上实现效果,但我需要将它应用于一个可信的div。
这是我到目前为止所做的事情:
<style>
.container {
height: 35px;
width: 100%;
border: solid 1px rgba(0, 0, 0, .2);
margin-bottom: 5px;
overflow-x: auto;
padding-bottom: 10px;
transition-duration: 0.2s;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.container:focus {
border-bottom: solid 2px black;
}
</style>
这是HTML:
<div id="editor" contenteditable="true" class="container" />
在焦点上将底线从无变为黑色,焦点丢失则从黑色变为淡入淡出。我想要的是显示相同的线,但是从div的中心到焦点上的边界和焦点丢失我希望它从边界到中心,就像链接一样。
有人可以提供帮助吗? 提前谢谢。
答案 0 :(得分:0)
只有边框才能实现这一点。请使用:before
和:after
。请务必为您的元素position: relative;
,这样您就可以:before
和:after
position: absolute;
.container {
position: relative;
height: 35px;
width: 100%;
border: 0;
margin-bottom: 5px;
overflow-x: auto;
padding-bottom: 10px;
}
.container:before,
.container:after {
position: absolute;
bottom: 0;
content: '';
}
.container:before {
left: 0;
height: 1px;
width: 100%;
background: #e0e0e0;
border-bottom: solid 1px rgba(0, 0, 0, .2);
z-index: 1;
}
.container:after {
position: absolute;
left: 50%;
height: 3px;
width: 0;
background: blue;
border: 0;
transition-duration: 0.2s;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transform: translateX(-50%);
z-index: 2;
}
.container:focus {
outline: 0;
}
.container:focus:after {
width: 100%;
}