【1】制作三角形
.box {
width: 0;
height: 0;
margin: 0 auto;
/* 等腰直角三角: 各边框宽度一致,将上边框保留,其他边框设置为透明色 */
border: 100px solid transparent;
border-top: 100px solid red;
}
【2】文字超过范围显示省略号
.box {
width: 200px;
height: 200px;
/* 一下三句就是做省略的关键 */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
【3】超出宽度在div内左右滑动
.box {
height: auto;
/* 设置不换行 */
white-space: nowrap;
/* x轴超出可滚动 */
overflow-x: auto;
overflow-y: hidden;
border: 1px solid #ccc;
}
...
【4】清除浮动
.box:before,
.box:after {
content: "";
display: block;
clear: both;
}
【5】背景颜色多变
.box {
position: relative;
width: 200px;
height: 200px;
margin: 100px auto;
background-color: #ccc;
}
.box::before {
content: '';
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 5px;
background: -webkit-repeating-linear-gradient(45deg, #ff6c6c 0, #ff6c6c 20%, transparent 0, transparent 25%, #1989fa 0, #1989fa 45%, transparent 0, transparent 50%);
background: repeating-linear-gradient(-45deg, #ff6c6c 0, #ff6c6c 20%, transparent 0, transparent 25%, #1989fa 0, #1989fa 45%, transparent 0, transpar服务器托管网ent 50%);
background-size: 80px;
}
【6】上下居中
.box {
height: 200px;
}
.middle {
margin-top: 100px;
transform: translateY(-50%);
}
【7】不显示滚动条但可滚动
.box {
overflow: scroll;
}
.box::-webkit-scrollbar {
display: none;
width: 0 !important;
}
【8】更改滚动条样式
/*滚动条整体样式*/
.box::-webkit-scrollbar {
width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
height: 5px;
}
/*滚动条里面小方块*/
.box::-webkit-scrollbar-thumb {
border-radius: 5px;
box-shadow: inset 0 0 5px #fafafa;
-webkit-box-shadow: inset 0 0 5px #fafafa;
background: rgba(0,0,0,.075);
}
/*滚动条里面轨道*/
.box::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px #fafafa;
-webkit-box-shadow: inset 0 0 5px #fafafa;
border-radius: 0;
background: #ececec;
}
【9】去掉input、select自带样式
input {
width: 100%;
outline-color: invert;
outline-style: none;
outline-width: 0px;
border: none;
border-style: none;
text-shadow: none;
-webkit-appearance: none;
-webkit-user-select: text;
outline-color: transparent;
box-shadow: none;
}
select {
border: 0;
display: block;
width: 100%;
white-space: nowrap;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
}
【10】动画animation
.box {
animation: move 2.5s linear 2.5s;
}
@keyframes move {
0% {
...
}
100% {
...
}
}
【11】过渡效果
.box {
width: 200px;服务器托管网
height: 20px;
margin: 0 auto;
border: 1px solid red;
border-radius: 10px;
box-sizing: border-box;
}
.son {
width: 50%;
height: 100%;
border-radius: 10px;
background-color: red;
/* 过渡效果 */
transition: all 1s ease-in-out 0.3s;
}
.box:hover .son {
width: 100%;
background-color: green;
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
开源中国社区团队直播首秀,以分享为名讲述开源中国社区背后的故事” 一、模型推理优化 随着模型在各种场景中的落地实践,模型的推理加速早已成为AI工程化的重要内容。而近年基于Transformer架构的大模型继而成为主流,在各项任务中取得SoTA成绩,它们在训练和…