当前位置:首页 > html5+css3

html5+css3

  • 最新
  • 浏览
  • 评论

实现背景色半透明渐变效果

tigon3年前 (2021-06-23)html5+css32183
实现背景色半透明渐变效果
父级相对定位 .box__shadow_left,.box__shadow_right{ position: absolute; top:0; height: 65rpx; width: 60px; z-index: 9; } 左边的效果 .box__shadow_le...

弹出框在页面左右上下居中的写法

tigon4年前 (2021-02-19)html5+css31523
自适应写法 .dialog{ border-radius: 8px; display: flex; flex-direction: column; position: absolute; top: 50%; left: 50%; transfo...

动态计算rem适应

自由小鸟5年前 (2019-09-09)html5+css32141
<script>~ function(){function computed(){let HTMl=document.documentElement,deviceW=HTML.clientWidth, //显示屏宽度deviceWdesignw=750,     &n...

less

自由小鸟5年前 (2019-09-09)html5+css32272
继承:2种 box1想公用box2的内容1,完全复制  .box1{    .box2}2,只公用同级的.box1{    &:extend(.box2)}嵌套.box1{ &nbs...

多行文字固定行显示省略号

自由小鸟5年前 (2019-07-02)html5+css32118
第一种display: -webkit-box-webkit-box-orient: vertical-webkit-line-clamp: 2overflow: hidden第二种p{position: relative; line-height: 20px;&nbs...

ease,seae-in,ease-in-out,ease-out,效果

自由小鸟7年前 (2018-06-20)html5+css34315
ease,seae-in,ease-in-out,ease-out,效果
值描述linear规定以相同速度开始至结束的过渡效果(等于 cubic-bezier(0,0,1,1))。(匀速)ease规定慢速开始,然后变快,然后慢速结束的过渡效果(cubic-bezier(0.25,0.1,0.25,1))(相对于匀速,中间快,两头慢)。ease-in规定以慢速开始的过渡效果...