摘要:
本技术包括:jquery.js 技术,bootstrap技术,html5的number控件技术等. 在上次基础上,增加了一个出题按钮,又增加了一个set.gif动画. 代码如下: <!doctype html> <html> <head> <meta charset="utf-8"> <title> 阅读全文
2020年4月18日 #
2020年4月17日 #
摘要:
站点演示:点击-> 代码参考: https://files.cnblogs.com/files/exesoft/HtzdSite.zip 阅读全文
2020年4月13日 #
该文被密码保护。 阅读全文
2020年4月3日 #
摘要:
管理员登录后,有两个界面,可以选择传统[移动模式]界面 或 升级后的[PC模式]界面 选择[PC模式]后,界面如下: 阅读全文
2020年2月12日 #
摘要:
上代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>3DX轴旋转测试</title> <style> .container{ perspective: 50000px; transform-style:preserve-3 阅读全文
摘要:
Small盒子位于Big盒子中央位置.同时,文字也位于Smalll盒子的中央位置.通过calc函数进行辅助计算. 上代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS计算函数calc的测试</title> <styl 阅读全文
2020年2月11日 #
摘要:
上代码: <!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS 变量测试</title> <style type="text/css"> :root{ --myfontcolor:red; } h2{ --myh2fontco 阅读全文
2020年2月6日 #
摘要:
方法一:精灵图片已经被切割好(假设为: p01.png,p02.png,...,p09.png), 可以这些做: <!doctype html> <html> <head> <meta charset="utf-8"> <title>图片序列动画演示-1</title> <style type="t 阅读全文
2020年2月5日 #
摘要:
初学者,练习以下片段: 代码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 阅读全文
2020年1月15日 #