摘要: chrome.notifications.create({ type: "basic", title: "贴身助理提醒", message: '美好的一天又开始了,呼吸清新,拥抱阳光;微笑吧,快乐心情,开心一天。早上好,愿你有个好心情! 记得打卡', iconUrl: '图片链接', eventTi 阅读全文
posted @ 2024-01-18 14:17 樱桃树下的约定 阅读(22) 评论(0) 推荐(0)
摘要: 使用JS 注入 注入方式 是以浏览器插件 function dom() { // 创建一个MutationObserver实例 let mutationObserver = new MutationObserver(function(mutationsList, observer) { for(va 阅读全文
posted @ 2023-11-16 14:49 樱桃树下的约定 阅读(520) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> * {box-sizing: border-box;} .img-zoom-con 阅读全文
posted @ 2023-10-04 09:57 樱桃树下的约定 阅读(31) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> * {box-sizing: border-box;} .img-magnifie 阅读全文
posted @ 2023-10-04 09:55 樱桃树下的约定 阅读(40) 评论(0) 推荐(0)
摘要: HTML <canvas>画布元素用于通过脚本(通常是JavaScript)动态绘制图形。 <canvas> 画布元素只是图形的容器。您必须使用脚本来实际绘制图形。 <canvas>有几种用于绘制路径、框、圆、文本和添加图像的方法。 绘制canvas <!DOCTYPE html> <html la 阅读全文
posted @ 2023-10-03 20:55 樱桃树下的约定 阅读(207) 评论(0) 推荐(0)
摘要: SVG 有一些预定义的形状元素 矩形 <rect> 圆形 <circle> 椭圆 <ellipse> 线 <line> 折线 <polyline> 多边形 <polygon> 路径 <path> 矩形 - <rect> <svg width="400" height="180"> <rect x=" 阅读全文
posted @ 2023-10-03 14:43 樱桃树下的约定 阅读(134) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <style> .tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { visibi 阅读全文
posted @ 2023-09-30 21:39 樱桃树下的约定 阅读(158) 评论(0) 推荐(0)
摘要: git config user.name 查看当前名称 git config --global --replace-all user.name "xx" 需要更换的名称 Git用户名作用用户名相当于你的身份标识,是本地Git客户端的一个变量,不会随着Git库而改变。 阅读全文
posted @ 2023-08-15 10:16 樱桃树下的约定 阅读(79) 评论(0) 推荐(0)
摘要: setInterval(function() { check() }, 4000); var check = function() { function doCheck(a) { if (("" + a/a)["length"] !== 1 || a % 20 0) { (function() {} 阅读全文
posted @ 2023-08-03 15:02 樱桃树下的约定 阅读(149) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2023-08-03 13:45 樱桃树下的约定 阅读(86) 评论(0) 推荐(0)
返回顶端