行易软件

少谈技术,多谈应用

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页

2020年6月24日 #

摘要: 爬网演练代码1: import requests from bs4 import BeautifulSoup url = 'https://www.cnblogs.com/exesoft/p/13184331.html' r = requests.get(url, timeout=30) r.enc 阅读全文
posted @ 2020-06-24 09:32 行易软件技术团队 阅读(167) 评论(0) 推荐(0) 编辑

2020年6月23日 #

摘要: 代码如下: <!doctype html> <html> <head> <meta charset="utf-8"> <title>源表格</title> <style> .exesoft-table{ width:300px; height:200px; } .exesoft-table th,. 阅读全文
posted @ 2020-06-23 20:34 行易软件技术团队 阅读(167) 评论(0) 推荐(0) 编辑

2020年6月22日 #

摘要: content-box:padding和border不被包含在定义的width和height之内。对象的实际宽度等于设置的width值和border、padding之和,即 ( Element width = width + border + padding ).此属性表现为标准模式下的盒模型。bo 阅读全文
posted @ 2020-06-22 11:16 行易软件技术团队 阅读(210) 评论(0) 推荐(0) 编辑

2020年6月18日 #

摘要: 训练代码1:全局变量及局部变量的作用域测试 运行结果分别是: 2 1 2 2 3 3 1 训练代码2:划五角星并填充 效果: 阅读全文
posted @ 2020-06-18 11:12 行易软件技术团队 阅读(177) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2020-06-13 07:48 行易软件技术团队 阅读(60) 评论(0) 推荐(0) 编辑

摘要: Grid技术+动画技术 示范: <!doctype html> <html> <head> <meta charset="utf-8"> <title>Grid Animate Demo</title> <style type="text/css"> html { box-sizing: borde 阅读全文
posted @ 2020-06-13 07:44 行易软件技术团队 阅读(75) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2020-06-11 10:53 行易软件技术团队 阅读(217) 评论(0) 推荐(0) 编辑

2020年6月9日 #

摘要: 名称叫法 这种方式在业界上统称:识别码、前缀-ms代表【ie】内核识别码-moz代表火狐【firefox】内核识别码-webkit代表谷歌【chrome】/苹果【safari】内核识别码-o代表欧朋【opera】内核识别码 在CSS3中的用法 -ms-transform:rotate(7deg); 阅读全文
posted @ 2020-06-09 11:32 行易软件技术团队 阅读(551) 评论(0) 推荐(0) 编辑

摘要: 代码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 阅读全文
posted @ 2020-06-09 08:44 行易软件技术团队 阅读(162) 评论(0) 推荐(0) 编辑

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 阅读全文
posted @ 2020-06-08 16:42 行易软件技术团队 阅读(201) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页