上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 203 下一页
摘要: 直播源码开发,js监听在当前页面停留太长时间 使用 // 引用方法<script src="./longTimeStopScreen.js"></script><script> window.onload = () => { // 定义倒计时的时长 const time = 10; longTime 阅读全文
posted @ 2023-05-23 14:05 云豹科技-苏凌霄 阅读(14) 评论(0) 推荐(0)
摘要: 直播app开发搭建,scroll-view封装自定义下拉刷新 完整代码 <!-- container.vue --><template><view><scroll-viewscroll-y="true"class="scroll-view":refresher-enabled="refresh":r 阅读全文
posted @ 2023-05-23 14:01 云豹科技-苏凌霄 阅读(39) 评论(0) 推荐(0)
摘要: 附JS时间转换: JS返回date对象的日期部分的本地化字符串 : new Date().toLocaleDateString() JS返回date对象的时间部分的本地化字符串 new Date().toLocaleTimeString() JS接收后端时间戳转为JS时间 new Date(pars 阅读全文
posted @ 2023-05-22 14:11 云豹科技-苏凌霄 阅读(21) 评论(0) 推荐(0)
摘要: 直播平台制作,vue图片上传,重复上传相同路径图片 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta n 阅读全文
posted @ 2023-05-22 14:08 云豹科技-苏凌霄 阅读(44) 评论(0) 推荐(0)
摘要: 直播网站源码,uniapp多行滚动通知 上下多行滚动代码:template部分<template> <view class="content"> <swiper class="swiper" vertical circular autoplay interval="2000" // 重点 displ 阅读全文
posted @ 2023-05-22 14:06 云豹科技-苏凌霄 阅读(38) 评论(0) 推荐(0)
摘要: 直播平台制作,支持其他应用打开,接收其他应用文件并保存 AndroidMainfest中 <activity android:name=".ui.activity.OtherFileActivity" android:screenOrientation="portrait"> <intent-fil 阅读全文
posted @ 2023-05-19 14:10 云豹科技-苏凌霄 阅读(19) 评论(0) 推荐(0)
摘要: 直播系统搭建,设置透明背景(去掉蒙层)状态栏颜色不改变 Dialog设置透明背景(去掉蒙层) //背景全透明window!!.setBackgroundDrawable(ColorDrawable(Color.TRANSPARENT))window!!.setDimAmount(0f) ​ Dial 阅读全文
posted @ 2023-05-19 14:08 云豹科技-苏凌霄 阅读(134) 评论(0) 推荐(0)
摘要: 直播系统开发,pymssql连接数据库 并设置数据格式为字典 代码: connect = pymssql.connect(server='LAPTOP-DUHL1TTU\YXHLHM', # 服务器名或本地IP user='sa', # 默认账户 password='*****', # 自己设置的密 阅读全文
posted @ 2023-05-19 14:03 云豹科技-苏凌霄 阅读(29) 评论(0) 推荐(0)
摘要: 视频直播app源码,纯JS实现旋转木马/3d相册 1.首先设置一个div,为其加上perspective的属性(撑开空间),方便后边观察效果 /* 场景景深 */#perspective{perspective: 700px;/*此属性是实现旋转木马的要点,能产生空间上的距离/延伸感。在此盒子中放置 阅读全文
posted @ 2023-05-18 14:09 云豹科技-苏凌霄 阅读(66) 评论(0) 推荐(0)
摘要: 直播平台源代码,纯JS实现左右滑动轮播图 轮播图需要实现左右无缝切换 轮播图的动态切换 利用右外边距或左外边距的加减来操作整个放有图片div的移动,同时利用setTimeout()函数和计时器实现自动切换,从而达到图片无缝切换的效果 //得到图片的集合var imgs = document.getE 阅读全文
posted @ 2023-05-18 14:07 云豹科技-苏凌霄 阅读(109) 评论(0) 推荐(0)
上一页 1 ··· 64 65 66 67 68 69 70 71 72 ··· 203 下一页