上一页 1 ··· 100 101 102 103 104 105 106 107 108 ··· 206 下一页
摘要: 直播平台软件开发,卡片式轮播图,可左右滑动 wxml代码 <swiper bindchange="cardSwiper" indicator-dots="true" circular="true" indicator-color="#8799a3" indicator-active-color="# 阅读全文
posted @ 2022-12-02 14:05 云豹科技-苏凌霄 阅读(57) 评论(0) 推荐(0)
摘要: 直播软件app开发,验证码输入框的简单封装 封装验证码输入框 自定义一个CustomOtpInput 类,继承自 StatelessWidget CustomOtpInput 需要接收 TextEditingController 和 autoFocus 控制 设计输入需要展示的样式 onChange 阅读全文
posted @ 2022-12-01 14:15 云豹科技-苏凌霄 阅读(40) 评论(0) 推荐(0)
摘要: 直播系统源代码,实现快速排序和归并排序 快排板子: #include <iostream>using namespace std;const int N = 1000010;int q[N];void quick_sort(int q[], int l, int r){ //递归的终止情况 if ( 阅读全文
posted @ 2022-12-01 14:08 云豹科技-苏凌霄 阅读(45) 评论(0) 推荐(0)
摘要: 直播app系统源码,简单易上手的进度条 第一步:安装 NProgress $ npm install --save nprogress ​第二步:在main.js文件中导入 NProgress 包对应的JS和CSS // 导入 NProgress 包对应的JS和CSSimport NProgress 阅读全文
posted @ 2022-12-01 14:01 云豹科技-苏凌霄 阅读(175) 评论(0) 推荐(0)
摘要: 直播app系统源码,canvas上放置按钮并实现点击之后全屏显示 html <div style=""> <div class="canvas-div"> <canvas id="playCanvas0" width="600" height="427" /> <i class="el-icon-z 阅读全文
posted @ 2022-11-30 11:28 云豹科技-苏凌霄 阅读(60) 评论(0) 推荐(0)
摘要: 直播平台源代码,el-button自定义图片显示 1 在按钮处自定义icon <el-button @click="to_devops(scope.row.pr_url)"> <i class="el-icon-devops" />// 自定义icon,这个el-icon-devops是我自己命名的 阅读全文
posted @ 2022-11-30 11:23 云豹科技-苏凌霄 阅读(41) 评论(0) 推荐(0)
摘要: 直播平台软件开发,登陆时获取当前时间 getNowDate() {var myDate = new Date;var year = myDate.getFullYear()var mon = myDate.getMonth() + 1var date = myDate.getDate()var ho 阅读全文
posted @ 2022-11-30 11:17 云豹科技-苏凌霄 阅读(12) 评论(0) 推荐(0)
摘要: app直播源码,flutter Text自动计算文本内容的宽度 一、什么是TextPainter 在内容开始之前,我们先来看一下它的属性 TextPainter({ InlineSpan? text, // TextSpan 文本组件 TextAlign textAlign = TextAlign. 阅读全文
posted @ 2022-11-29 10:46 云豹科技-苏凌霄 阅读(151) 评论(0) 推荐(0)
摘要: 直播app系统源码,flutter 验证码输入框的简单封装 封装验证码输入框 自定义一个CustomOtpInput 类,继承自 StatelessWidget CustomOtpInput 需要接收 TextEditingController 和 autoFocus 控制 设计输入需要展示的样式 阅读全文
posted @ 2022-11-29 10:41 云豹科技-苏凌霄 阅读(33) 评论(0) 推荐(0)
摘要: 直播平台源代码,循环滚动RecyclerView的实现 public class AutoRecyclerView extends RecyclerView { private static final long TIME_AUTO_POLL = 16; private final AutoPoll 阅读全文
posted @ 2022-11-29 10:36 云豹科技-苏凌霄 阅读(35) 评论(0) 推荐(0)
上一页 1 ··· 100 101 102 103 104 105 106 107 108 ··· 206 下一页