上一页 1 ··· 8 9 10 11 12 13 下一页
  2022年3月29日
摘要: 效果 /* 标题 */ .title_t{ color: #000000; font-size: 130%; display: inline-block; line-height: 30px; width: 90%; overflow:hidden;/*隐藏文字*/ text-overflow:el 阅读全文
posted @ 2022-03-29 14:47 depressiom 阅读(54) 评论(0) 推荐(0) 编辑
  2022年3月28日
摘要: 效果 css html,body{ height:100%; // 其他界面未设置html 无法监听scroll } /* 下拉刷新 */ .refresh-loading { transition: all 300ms ease 0s; height: 0; padding-top: 10px; 阅读全文
posted @ 2022-03-28 17:11 depressiom 阅读(784) 评论(0) 推荐(0) 编辑
  2022年3月25日
摘要: iOS下 input 不能获取焦点 获取焦点后:设置border:none无效果 .hb_content input{ display: inline-block; margin-left: 0.225rem; height: 1rem; border: none !important; outli 阅读全文
posted @ 2022-03-25 15:12 depressiom 阅读(98) 评论(0) 推荐(0) 编辑
  2022年3月23日
摘要: 效果图 需要引入 大佬写的js 以及 css 源文件里面有大佬的地址 这是我存在gitee上的文件 https://gitee.com/depressiom/address-pickview-effect.git <div class="weui-cells" style="margin: 0px; 阅读全文
posted @ 2022-03-23 15:03 depressiom 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 需要实现的效果图 弹窗 msg_alert 遮罩 position:absolute ####弹窗 alter_show 内容展示 position:fixed z-index:控制显示的层级 <!-- 弹窗 msg_alert 遮罩 position:absolute--> <div id="ms 阅读全文
posted @ 2022-03-23 14:39 depressiom 阅读(1111) 评论(0) 推荐(0) 编辑
摘要: 定义和用法 pattern 属性规定用于验证输入字段的模式。 模式指的是正则表达式。 注释:pattern 属性适用于以下 <input>类型:text, search, url, telephone, email 以及 password 语法 /** * 值 regexp * 描述 规定用于输入字 阅读全文
posted @ 2022-03-23 14:16 depressiom 阅读(564) 评论(0) 推荐(0) 编辑
  2022年3月16日
摘要: 强类型语言 要求变量的使用要严格符合规定,所有变量都必须先定义后使用 Java的数据类型分为两大类 基本类型(promitive type) 数值类型 ① 整数类型 byte 占1个字节范围:-128 - 127 byte num1 = 10; short 占2个字节范围:-32768 - 3276 阅读全文
posted @ 2022-03-16 22:36 depressiom 阅读(413) 评论(0) 推荐(0) 编辑
  2022年3月14日
摘要: 交互式运行容器 docker container run -it 容器id -it 交互式运行 PS:适用于测试环境,又称为工具式容器,用于开发、测试、临时性的任务 # docker container ls 查看正在运行的容器 # docker container ls -a 查看所有的容器 do 阅读全文
posted @ 2022-03-14 23:12 depressiom 阅读(55) 评论(0) 推荐(0) 编辑
  2022年3月10日
摘要: docker run hello-world 未获取权限 会报下面信息 sudo su - 获取root权限 docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///va 阅读全文
posted @ 2022-03-10 22:54 depressiom 阅读(33) 评论(0) 推荐(0) 编辑
  2022年3月9日
摘要: 镜像加速 /etc/docker/daemon.json 没有这个文件 创建这个文件 vi /etc/docker/daemon.json 按 i 进行插入 { "registry-mirrors":["http://docker.mirrors.ustc.edu.cn"] # 注册镜像源 } 1. 阅读全文
posted @ 2022-03-09 23:43 depressiom 阅读(210) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 下一页