摘要:
爬网演练代码1: import requests from bs4 import BeautifulSoup url = 'https://www.cnblogs.com/exesoft/p/13184331.html' r = requests.get(url, timeout=30) r.enc 阅读全文
2020年6月24日 #
2020年6月23日 #
摘要:
代码如下: <!doctype html> <html> <head> <meta charset="utf-8"> <title>源表格</title> <style> .exesoft-table{ width:300px; height:200px; } .exesoft-table th,. 阅读全文
2020年6月22日 #
摘要:
content-box:padding和border不被包含在定义的width和height之内。对象的实际宽度等于设置的width值和border、padding之和,即 ( Element width = width + border + padding ).此属性表现为标准模式下的盒模型。bo 阅读全文
2020年6月18日 #
摘要:
训练代码1:全局变量及局部变量的作用域测试 运行结果分别是: 2 1 2 2 3 3 1 训练代码2:划五角星并填充 效果: 阅读全文
2020年6月13日 #
摘要:
1.css3 forwards、backwards、both: https://www.cnblogs.com/jone-chen/p/5194626.html 2.CSS3中的transition属性详解 https://www.cnblogs.com/afighter/p/5731293.htm 阅读全文
摘要:
Grid技术+动画技术 示范: <!doctype html> <html> <head> <meta charset="utf-8"> <title>Grid Animate Demo</title> <style type="text/css"> html { box-sizing: borde 阅读全文
2020年6月11日 #
摘要:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Text Box Demo</title> <link rel="stylesheet" type="text/css" href="animate.min.css"> <styl 阅读全文
2020年6月9日 #
摘要:
名称叫法 这种方式在业界上统称:识别码、前缀-ms代表【ie】内核识别码-moz代表火狐【firefox】内核识别码-webkit代表谷歌【chrome】/苹果【safari】内核识别码-o代表欧朋【opera】内核识别码 在CSS3中的用法 -ms-transform:rotate(7deg); 阅读全文
摘要:
代码1: 划一个简单的x及y轴,标出原点O及坐标为(100,100)的A点。 import turtle turtle.goto(0,0) turtle.dot(20,"yellow") turtle.write("O", font=('Arial', 10, 'normal')) turtle.f 阅读全文
2020年6月8日 #
摘要:
代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS Grid And Animate Show</title> <link rel="stylesheet" type="text/css" href="animate 阅读全文