
css3
裴嘉靖
学而不思则罔 思而不学则殆
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
渐变侧边栏CSS
<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> body{ background: #10172A; color: white; height: 100%; font-family: ui-monospace, SFMono-原创 2022-03-22 19:03:58 · 308 阅读 · 0 评论 -
css文件夹打开特效代码
<!doctype html><html> <head> <meta charset="utf-8"> <title></title> <style> body { background-color: #000; } .folder { cursor: pointer; position: absolute; top: 50%; left: 50%.原创 2022-01-17 15:50:41 · 645 阅读 · 0 评论 -
css时间过渡图片放大
.aa:hover{ transform: scale(1.02);//图片放大 box-shadow: 2px 2px 5px #CCCCCC; transition:1s;//时间过渡}原创 2021-01-18 16:19:26 · 511 阅读 · 0 评论 -
CSS两端对齐解决方案
.labod { font-size: 48upx; text-shadow: 0upx 0upx 1upx #693018; border: 1px solid red; width: 200upx; height: 60upx; text-align: justify; } .labod:after { content: " "; display: inline-block; width: 100%; }原创 2021-01-05 13:27:16 · 182 阅读 · 0 评论 -
CSS3的新增属性pointer-events
用view如何写按钮禁用。数据驱动按钮样式(uni-app项目代码)<!-- 确定按钮 --> <view class="btn text-center text-white" :class="phone!==''&&Vcode!==''?'none':''" @tap="btnTap"> 登录 </...原创 2020-04-30 21:08:45 · 241 阅读 · 0 评论