.expand {
transform: rotate(90deg);
-ms-transform: rotate(90deg);
/* Internet Explorer 9*/
-moz-transform: rotate(90deg);
/* Firef...
yekong
3年前 (2022-01-16)
喜欢
在一些情况下父类的面积太大,但是又需要父类遮挡住的区域允许穿透点击,但是父类下的子类不允许穿透,要可以点击到。
给子类单独写一下就可以了。
.fu {
pointer-events: none;
}
.zi{
pointer-events: initial;
}
...
yekong
3年前 (2022-01-12)
喜欢
chrome 和Safari
.element::-webkit-scrollbar { width: 0 }
IE 10+
.element { -ms-overflow-style: none; }
Firefox
.element { overflow: -moz-sc...
yekong
3年前 (2021-12-15)
喜欢
css方法:
video::-webkit-media-controls{
display:none !important;
}
js方法:
var video=document.getElementById("video");...
yekong
3年前 (2021-12-14)
喜欢
word-break: break-all
span {
font-size: 18px;
font-family: PingFang;
font-weight: 500;
color: #8FB2C...
yekong
3年前 (2021-12-08)
喜欢
width: 12px;
height: 90px;
background: linear-gradient(0deg, #F89B00 0%, #FFC547 100%);
...
yekong
3年前 (2021-12-08)
喜欢
background: url("../img/icon_top_left.png") top left no-repeat,
url("../img/icon_top_right.png") top right no-r...
yekong
3年前 (2021-10-27)
喜欢
微信小程序使用qiun-data-charts 做的表格,因为一些功能不能同时出现,需要将两个charts重叠在一起,但是使用zindex无法控制两个表格的层级,后来发现,是按照代码顺序加载的,下面的代码层级比上面的代码层级高
...
yekong
3年前 (2021-10-19)
喜欢
box-shadow: 0 0 10px rgba(5, 98, 198, 1) inset;
...
yekong
3年前 (2021-10-15)
喜欢
.qiulist:hover {
.fake {
animation-play-state: paused;
-webkit-animation-play-state: paused; /* Safari 和 Chrome */
}
}
...
yekong
3年前 (2021-10-08)
喜欢