02 2021 档案

摘要:网易云外链接生成方法 1. 打开网易云找到一首歌 2. 找到这首歌的id 3. 将id替换到这个url上http://music.163.com/song/media/outer/url?id= .mp3 4. 点击这条链接就可以直接获得一个纯mp3网页 阅读全文
posted @ 2021-02-23 21:30 L-L 阅读(1614) 评论(0) 推荐(0)
摘要:一、print的使用 print(520) #数字,可以不用加引号,计算机能够理解数字 print(260+260) #数学运算和数字类似,计算机可以识别 print("一眼万年") #文字要加引号 520 520 一眼万年 二、变量和赋值 name="python" #name是变量,python 阅读全文
posted @ 2021-02-14 21:06 L-L 阅读(270) 评论(0) 推荐(0)
摘要:CSS固定菜单栏 - 当鼠标向下滑动时,位于最上面的导航一直不动,而内容发生变化 <style> * { padding: 0px; margin: 0px; } .navbar { width: 100%; background: black; /* 固定住导航条 */ position: fix 阅读全文
posted @ 2021-02-14 12:24 L-L 阅读(302) 评论(0) 推荐(0)