上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页

2022年2月27日

摘要: 参考网站 https://lhammer.cn/You-need-to-know-css/#/zh-cn/ <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> /* 通用样 阅读全文
posted @ 2022-02-27 02:34 完美前端 阅读(61) 评论(0) 推荐(0)

2022年2月25日

摘要: Flutter Web 打包指南 // 如果你的Flutter版本低于2.0,请先升级Flutter版本 // 创建一个web文件夹来存放web相关的资源 flutter create . // 使用HTML渲染器打包,该渲染器提供的打开速度最快,并且具有良好的浏览器兼容性(例如IE, Chrome 阅读全文
posted @ 2022-02-25 01:26 完美前端 阅读(2641) 评论(0) 推荐(0)

2022年2月19日

摘要: #### 跑马灯动画效果 /* 使用@keyframes定义一个命名为marqueeAnimation的动画,使文本从右至左滚动 */ @keyframes marqueeAnimation { 0% { transform: translateX(100%); /* 起始状态,文本从容器的右边开始 阅读全文
posted @ 2022-02-19 19:11 完美前端 阅读(490) 评论(0) 推荐(0)

2022年2月12日

摘要: [ { "area_code": "0093", "country_id": 2, "forbid": true, "name_cn": "阿富汗", "name_en": "Afghanistan" }, { "area_code": "00355", "country_id": 3, "forb 阅读全文
posted @ 2022-02-12 22:08 完美前端 阅读(2489) 评论(0) 推荐(0)

2021年12月29日

摘要: 完整的代码, 可以复制引用 //导入必要的模块 const fs = require('fs') const exec = require('child_process').exec // 配置相关的路径 // 打包后的git本地仓库的路径 const cwd = '/Users/ff/Deskto 阅读全文
posted @ 2021-12-29 22:22 完美前端 阅读(207) 评论(0) 推荐(0)
摘要: // 引入依赖 const fs = require('fs'); // 删除指定路径下的所有文件 /** * 删除指定路径下的所有文件,但排除某些特定文件或文件夹。 * @param {string} path - 需要清空文件的路径。 */ function emptyDir(path) { c 阅读全文
posted @ 2021-12-29 22:22 完美前端 阅读(140) 评论(0) 推荐(0)

2021年12月24日

摘要: Python 快速搭建http服务 https://www.python.org/downloads/ <!-- 官方Python下载链接 --> 进入项目路径 进入项目所在的路径 <!-- 使用命令行或终端进入你的项目路径 --> 使用Python启动简单的HTTP服务器 sudo python 阅读全文
posted @ 2021-12-24 15:48 完美前端 阅读(955) 评论(0) 推荐(0)
摘要: brew 是MacOS上的包管理工具,可以简化 macOS 和 Linux 操作系统上软件的安装。 1.确认安装ruby brew是ruby开发的,需要确认ruby是否已安装,默认是已经安装的。 $ which ruby $ruby --version 2.安装(较慢) 执行命令: ruby -e 阅读全文
posted @ 2021-12-24 00:26 完美前端 阅读(5389) 评论(0) 推荐(0)

2021年11月27日

摘要: 组件布局 组件创建一个滚动的聊天列表: <scroll-view class="bottom-t" :scroll-y="true" :show-scrollbar="false" scroll-with-animation="true"> <view class="bottom-t-t"> <vi 阅读全文
posted @ 2021-11-27 23:25 完美前端 阅读(488) 评论(0) 推荐(0)

2021年10月27日

摘要: 完整的代码, 可以复制引用 import axios from 'axios'; // 引入axios库 import router from '../router'; // 引入vue-router import Utils from '../utils/utils'; // 引入自定义的工具函数 阅读全文
posted @ 2021-10-27 23:03 完美前端 阅读(249) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页

导航