摘要: 应用工具: 1、浏览器插件:floccus (官网下载) 2、坚果云(www.jianguoyun.com) 步骤一:下载安装floccus插件(不会安装的搜索“浏览器插件安装”) 步骤二:注册坚果云账号 步骤三:登录坚果云,点击右上角的用户名称 -> 账户信息 -> 安全选项 -> 添加应用;设置 阅读全文
posted @ 2025-08-07 17:25 枫落曳 阅读(80) 评论(0) 推荐(0)
摘要: 效果图: (移动端) (PC端 ) 完整代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrin 阅读全文
posted @ 2025-06-04 10:59 枫落曳 阅读(17) 评论(0) 推荐(0)
摘要: 当前使用PHPExcel 1.6版本(1.8版本还可简化) //导出Excel public function outExcel() {// 设置文件名 $file_name = date("YmdHis",time()).".xlsx"; $headerData = ['表头1', '表头2', 阅读全文
posted @ 2024-11-11 17:27 枫落曳 阅读(59) 评论(0) 推荐(0)
摘要: 1、 常用的git命令 git status:显示有变更的文件; git add .:加当前目录的所有文件到暂存区; git commit -m 'message':提交暂存区到仓库区; git push [remote] [branch]:上传本地指定分支branch到远程仓库remote; gi 阅读全文
posted @ 2024-10-19 09:50 枫落曳 阅读(2130) 评论(0) 推荐(0)
摘要: 1 <html> 2 <head> 3 <link rel="stylesheet" href="./layui.css"> 4 </head> 5 <body> 6 <form> 7 8 <div class="layui-form-item"> 9 <div class="title">操作权限 阅读全文
posted @ 2024-08-15 11:05 枫落曳 阅读(34) 评论(0) 推荐(0)
摘要: 容器中子元素点击滚动居中 效果截图: HTML: <div class="type"> <div class="type-wrapper"> <div class="type-slide"><div class="img">专</div></div> <div class="type-slide"><div class="i 阅读全文
posted @ 2024-01-18 10:23 枫落曳 阅读(7) 评论(0) 推荐(0)
摘要: 参数解释: url:要分享的页面链接 title:要分享的页面标题 <a href="javascript:(function(){window.open('http://connect.qq.com/widget/shareqq/index.html?url='+encodeURIComponen 阅读全文
posted @ 2023-12-09 10:52 枫落曳 阅读(79) 评论(0) 推荐(0)
摘要: public function index() { $id = (int)input('id'); if(empty($id) || !is_numeric($id)){ $this->error("参数错误"); } $fileinfo = db('files')->where('id',$id) 阅读全文
posted @ 2022-08-27 10:12 枫落曳 阅读(154) 评论(0) 推荐(0)
摘要: 添加picker: 1 <view class="weui-cell weui-cell_access weui-cell_wxss f-30 nowrap"> 2 <view class="weui-cell__hd" slot="title">分类</view> 3 <view class="t 阅读全文
posted @ 2022-05-17 11:48 枫落曳 阅读(1279) 评论(0) 推荐(0)
摘要: 加上此样式即可: img { image-rendering:-moz-crisp-edges; image-rendering:-o-crisp-edges; image-rendering:-webkit-optimize-contrast; image-rendering: crisp-edg 阅读全文
posted @ 2022-04-26 17:50 枫落曳 阅读(241) 评论(0) 推荐(0)