今天主要学习了是如何实现的,以及我在写这个页面的时候我所遇到的一些困难。 主要实现是用代码的,不说废话了,其实我是想说我走的坑有哪些。 1.代码的基础不好,元素的一些属性不熟悉,对于HTML和css还没有一个更深层次的一个理解。 2.注意一些类选择器和ID选择器的名是否对一致。 3.在导航栏那一部分 ...
分类:
Web程序 时间:
2019-08-24 00:36:50
阅读次数:
274
<html> <head> <title>机器猫</title> <style> div{ width: 30px; height: 30px; top: 130px; left: 130px; position: absolute; background: red; border-radius: ...
分类:
Web程序 时间:
2019-08-19 18:46:15
阅读次数:
137
原文: http://blog.gqylpy.com/gqy/348 " 在项目中的某.py文件中定义一个模板过滤器作为装饰器的函数,函数传入参数txt: 这样就可以在视图函数的返回字符中用md语法格式的文档: 之后,即可在jinja模板文件中调用之前自定义的过滤器: " 原文: http://bl ...
分类:
其他好文 时间:
2019-08-18 17:45:09
阅读次数:
61
For any 4-digit integer except the ones with all the digits being the same, if we sort the digits in non-increasing order first, and then in non-decre ...
分类:
其他好文 时间:
2019-08-17 18:00:35
阅读次数:
1440
[已知宽高] 2.已经知宽高[父元素相对定位,子元素绝对定位 top为0,bottom为0,left为0,right为0,margin为auto] [未知宽高] 1.未知宽高[CSS3的transform,绝对定位,top为50%,left为50%] transform只兼容到IE9 2.未知宽高[ ...
分类:
Web程序 时间:
2019-08-16 19:06:48
阅读次数:
92
WPF布局执行工作 height,width:元素期望尺寸 Actualheight,Actualwidth:实际尺寸 布局继承机制 DispatherObject:WPF应用程序使用单线程亲和模式,每个用户界面只被一个单线程使用。 DependebcyObject:依赖属性,在winform控件中 ...
1.RGB转换为Tcolor function RGBToColor(R,G,B: byte): Tcolor; begin Result := B Shl 16 or G shl 8 or R; end; 2.Tcolor转换为RGB proceudre Tform1.Button1Clink(S... ...
What is Hacking? Gaining unauthorized access. Hackers? 1.Black-hat Hackers 2.White-hat Hackers 3.Grey-hat Hackers WHAT IS A PROGRAM? A set of instruct ...
分类:
编程语言 时间:
2019-08-10 21:37:54
阅读次数:
93
题目 There is a square grid of size $n×n$. Some cells are colored in black, all others are colored in white. In one operation you can select some rectan ...
分类:
其他好文 时间:
2019-08-10 17:47:49
阅读次数:
100