上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: 属性 paused 返回 一个布尔值 currentTime 当前播放总时长 duration 视频总时长 方法 play() 播放方法 pause() 暂停方法 阅读全文
posted @ 2024-11-08 21:22 神仙不在 阅读(44) 评论(0) 推荐(0)
摘要: document.querySelector('iframe').contentWindow.document.querySelector('video') 阅读全文
posted @ 2024-11-08 21:22 神仙不在 阅读(64) 评论(0) 推荐(0)
摘要: ![image](https://img2024.cnblogs.com/blog/1533705/202411/1533705-20241108212128072-19908360.png) 阅读全文
posted @ 2024-11-08 21:21 神仙不在 阅读(9) 评论(0) 推荐(0)
摘要: https://www.remove.bg/zh 阅读全文
posted @ 2024-11-08 21:20 神仙不在 阅读(21) 评论(0) 推荐(0)
摘要: https://space.bilibili.com/477904786/channel/seriesdetail?sid=865217 抓香蕉-> 阅读全文
posted @ 2024-11-08 21:19 神仙不在 阅读(33) 评论(0) 推荐(0)
摘要: 点击查看代码 total_seconds = int(input("输入总秒数:")) hour = total_seconds // 3600 second = total_seconds % 60 minute = total_seconds // 60 % 60 print("时:", hou 阅读全文
posted @ 2024-11-04 10:41 神仙不在 阅读(19) 评论(0) 推荐(0)
摘要: 第一种写操作 点击查看代码 import csv with open('666.csv', 'w', newline='', encoding='utf-8') as f: writer = csv.writer(f) writer.writerow(['班级', '成绩', ]) writer.w 阅读全文
posted @ 2024-10-30 10:40 神仙不在 阅读(18) 评论(0) 推荐(0)
摘要: 点击查看代码 // ==UserScript== // @name 脚本名称 // @namespace http://tampermonkey.net/ // @version 版本号 // @description 脚本描述 // @author 作者 // @match 适用URL模式 // 阅读全文
posted @ 2024-10-29 20:14 神仙不在 阅读(196) 评论(0) 推荐(0)
摘要: 点击查看代码 function playVideo() { if (document.querySelector("video")) { console.log("检查是否有视频"); let player = document.querySelector("video") if (player.p 阅读全文
posted @ 2024-10-29 19:59 神仙不在 阅读(15) 评论(0) 推荐(0)
摘要: 点击查看代码 import random user = int(input("请输入一个整数:1(剪刀)2(石头)3(布):")) computer = random.randint(1, 3) # 用户赢 # (user == 1 and computer == 3) or (user == 2 阅读全文
posted @ 2024-10-20 13:16 神仙不在 阅读(12) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页