上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 185 下一页
摘要: 直播商城源码,vue中,input输入框只允许输入数字 如果想自动将用户的输入值转为数值类型,可以给 v-model 添加 number 修饰符: <input v-model.number="age" type="text" /> ​ 当输入类型为 text 字符串类型时这通常很有用。 如果输入类 阅读全文
posted @ 2023-09-12 14:08 云豹科技-苏凌霄 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 直播app开发搭建,vue 一分钟倒计时功能实现 HTML <template> <div @click="countdowm" v-text="content "></div></template> ​在data里边定义相关变量 data() { return { content: "倒计时", 阅读全文
posted @ 2023-09-12 14:06 云豹科技-苏凌霄 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 直播平台软件开发,flex布局,不设置宽度,实现文字超出部分隐藏 .flex-box { display: flex;} .flex-item-space { flex: 1; min-width: 0; //重点样式 white-space: nowrap; //重点样式} .title { ov 阅读全文
posted @ 2023-09-12 14:02 云豹科技-苏凌霄 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 直播商城源码,图标懒加载 // 图片懒加载function lazyLoad() {const imgs = document.getElementsByTagName('img')const len = imgs.length// 可视窗口高度// console.log(imgs,'imgs[i 阅读全文
posted @ 2023-09-11 14:07 云豹科技-苏凌霄 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 直播软件搭建,css隐藏滚动条,但使超出部分任然可以滚动 /*长tabs,隐藏滚动条,保留滚动功能*/.weChat-tabs{ height: 40px; display: flex; overflow-x: scroll; padding: 0 20px; white-space: nowrap 阅读全文
posted @ 2023-09-11 14:05 云豹科技-苏凌霄 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 直播软件开发,JavaScript HTML5 dom,图片拖拽上传功能 <!DOCTYPE html><html><head><meta charset="utf-8"><title></title><style type="text/css">.box{display: flex;width: 阅读全文
posted @ 2023-09-11 14:03 云豹科技-苏凌霄 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 直播开发app,往图片上写字 获取字符串的宽度 以像素为单位 InputStream imagein = new BufferedInputStream(new FileInputStream("/xxxx.png"));BufferedImage bi = ImageIO.read(imagein 阅读全文
posted @ 2023-09-08 14:11 云豹科技-苏凌霄 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 直播软件源码,html文本框选中后显示其它颜色 1. text html <input type="text" name="title" id="title"> ​ CSS #title:focus{ outline: none; border: 1px solid #fafafa; -webkit 阅读全文
posted @ 2023-09-08 14:04 云豹科技-苏凌霄 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 直播商城源码,d3.js svg中的text字体大小设置 svg 的text有一个font-size属性 <text x="5" y="25" fill="red" font-size="30">A</text> ​ 用d3.v4.js设置 svg.append("text") .attr("y", 阅读全文
posted @ 2023-09-08 14:01 云豹科技-苏凌霄 阅读(29) 评论(0) 推荐(0) 编辑
摘要: app直播源码,js在div里让它在内容更新时自动滚到底部 <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="content-type" content="text/html; charset=utf-8" /></ 阅读全文
posted @ 2023-09-07 14:11 云豹科技-苏凌霄 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 185 下一页