上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 185 下一页
摘要: 视频直播网站源码,自定义矢量图层的样式 var mystyle = new ol.style.Style({ image: new ol.style.Circle({ radius: 10, fill: new ol.style.Fill({ color: '#ffff00' }) }) });va 阅读全文
posted @ 2023-06-30 14:08 云豹科技-苏凌霄 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 直播网站源码,背景色渐变 实现页面从白色背景过度到蓝色 var t = d3.transition() .duration(2000);d3.select("body").transition(t).style("background-color", "lightblue");const color 阅读全文
posted @ 2023-06-30 14:05 云豹科技-苏凌霄 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 直播平台源代码,TextView文本折叠查看显示更多效果 1.collapsible_textview.xml定义 <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.co 阅读全文
posted @ 2023-06-29 14:12 云豹科技-苏凌霄 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 直播平台制作,使用动画设置ProgressBar进度 布局文件: <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns: 阅读全文
posted @ 2023-06-29 14:10 云豹科技-苏凌霄 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 直播app开发搭建,搜索框+含搜索历史记录 1.撸个页面 activity_main.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/an 阅读全文
posted @ 2023-06-29 14:06 云豹科技-苏凌霄 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 直播商城源码,EditView和TextView的综合应用 MainActivity.main public class MainActivity extends AppCompatActivity { Button bt; TextView tv; EditText et; View.OnClic 阅读全文
posted @ 2023-06-28 14:12 云豹科技-苏凌霄 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 直播平台怎么搭建,Android获取文本的宽度和高度 方法一:先绘制文本所在的矩形区域,再获取矩形区域的宽度 Rect rect = new Rect(); mPaint.getTextBounds(text,0,text.length(), rect); canvas.drawRect(rect, 阅读全文
posted @ 2023-06-28 14:10 云豹科技-苏凌霄 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 直播带货源码,LintCode 大小写转换 直接利用C++中的tolower(大写转小写)函数。 class Solution {public: /** * @param str: the input string * @return: The lower case string */ string 阅读全文
posted @ 2023-06-28 14:03 云豹科技-苏凌霄 阅读(17) 评论(0) 推荐(0) 编辑
摘要: app直播源码,Android 滑动拼图验证码控件 1.视图布局文件:activity_main.xml。 <?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout xmlns:android 阅读全文
posted @ 2023-06-27 14:10 云豹科技-苏凌霄 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 直播开发app,vue防抖 自定义ref实现输入框防抖 首先需要把input 的双向绑定v-mode 拆开为 一个value 和一个input事件,在事件里注册一个函数 debUpdata,debUpdata里获取到input输入内容再赋值给text,这就类似于手写v-mode,代码如下: <tem 阅读全文
posted @ 2023-06-27 14:06 云豹科技-苏凌霄 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 185 下一页