摘要: const scrollContainer = document.querySelector('.head-box'); // 父级容器 const activeItem = document.querySelector('.head-title-one'); // 子级容器 const conta 阅读全文
posted @ 2024-11-12 14:49 樱桃树下的约定 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一、CSS cursor 基本语法 cursor属性是什么:指鼠标指针放在一个元素边界范围内时所呈现的光标形状,它包括问号,小手等形状。使用时可以在任何你想要添加的标签里,插入style="cursor : 某属性值" ,也可以在CSS样式中添加。比如:pointer,小手形状help,帮助形状 。 阅读全文
posted @ 2024-03-11 10:00 樱桃树下的约定 阅读(1928) 评论(0) 推荐(0) 编辑
摘要: chrome.notifications.create({ type: "basic", title: "贴身助理提醒", message: '美好的一天又开始了,呼吸清新,拥抱阳光;微笑吧,快乐心情,开心一天。早上好,愿你有个好心情! 记得打卡', iconUrl: '图片链接', eventTi 阅读全文
posted @ 2024-01-18 14:17 樱桃树下的约定 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 使用JS 注入 注入方式 是以浏览器插件 function dom() { // 创建一个MutationObserver实例 let mutationObserver = new MutationObserver(function(mutationsList, observer) { for(va 阅读全文
posted @ 2023-11-16 14:49 樱桃树下的约定 阅读(312) 评论(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 樱桃树下的约定 阅读(5) 评论(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 樱桃树下的约定 阅读(8) 评论(0) 推荐(0) 编辑
摘要: HTML <canvas>画布元素用于通过脚本(通常是JavaScript)动态绘制图形。 <canvas> 画布元素只是图形的容器。您必须使用脚本来实际绘制图形。 <canvas>有几种用于绘制路径、框、圆、文本和添加图像的方法。 绘制canvas <!DOCTYPE html> <html la 阅读全文
posted @ 2023-10-03 20:55 樱桃树下的约定 阅读(137) 评论(0) 推荐(0) 编辑
摘要: SVG 有一些预定义的形状元素 矩形 <rect> 圆形 <circle> 椭圆 <ellipse> 线 <line> 折线 <polyline> 多边形 <polygon> 路径 <path> 矩形 - <rect> <svg width="400" height="180"> <rect x=" 阅读全文
posted @ 2023-10-03 14:43 樱桃树下的约定 阅读(92) 评论(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 樱桃树下的约定 阅读(145) 评论(0) 推荐(0) 编辑
摘要: git config user.name 查看当前名称 git config --global --replace-all user.name "xx" 需要更换的名称 Git用户名作用用户名相当于你的身份标识,是本地Git客户端的一个变量,不会随着Git库而改变。 阅读全文
posted @ 2023-08-15 10:16 樱桃树下的约定 阅读(69) 评论(0) 推荐(0) 编辑
返回顶端