e媒网络

一切皆可能 e媒网络 http://www.eMay.net

博客园 首页 新随笔 联系 订阅 管理

02 2020 档案

摘要:上代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>3DX轴旋转测试</title> <style> .container{ perspective: 50000px; transform-style:preserve-3 阅读全文
posted @ 2020-02-12 20:06 e媒网络技术团队 阅读(173) 评论(0) 推荐(0)

摘要:Small盒子位于Big盒子中央位置.同时,文字也位于Smalll盒子的中央位置.通过calc函数进行辅助计算. 上代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS计算函数calc的测试</title> <styl 阅读全文
posted @ 2020-02-12 13:08 e媒网络技术团队 阅读(225) 评论(0) 推荐(0)

摘要:上代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS 变量测试</title> <style type="text/css"> :root{ --myfontcolor:red; } h2{ --myh2fontco 阅读全文
posted @ 2020-02-11 18:56 e媒网络技术团队 阅读(136) 评论(0) 推荐(0)

摘要:方法一:精灵图片已经被切割好(假设为: p01.png,p02.png,...,p09.png), 可以这些做: <!doctype html> <html> <head> <meta charset="utf-8"> <title>图片序列动画演示-1</title> <style type="t 阅读全文
posted @ 2020-02-06 20:52 e媒网络技术团队 阅读(720) 评论(0) 推荐(0)

摘要:初学者,练习以下片段: 代码1:用 一元一次函数 画直线 import matplotlib.pyplot as plt import numpy as np x = np.linspace(-2, 2, 50) print(x) y = 2*x + 1 plt.plot(x, y) ax = pl 阅读全文
posted @ 2020-02-05 19:32 e媒网络技术团队 阅读(3443) 评论(0) 推荐(0)