div class='big2'> <div class='small2'>box3</div> </div> .big2{ height:200px; width:200px; border:black solid 1px; text-align:center; } .small2{ height ...
分类:
其他好文 时间:
2020-07-01 12:53:44
阅读次数:
97
MySQL的一些重要概念 1、索引、主键(primary key)、唯一键(unique)的区别 1)主键就是索引与唯一的结合 2)索引是为了让数据检索更快。 3)唯一键约束此字段不能有相同值,这样能优化索引。 4)全文搜索是为了like关键字设计的 2、合理建立索引的建议: 1)越小的数据类型通常 ...
分类:
数据库 时间:
2020-07-01 12:50:55
阅读次数:
80
1,position定位(推荐) <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .box01{ height: 300px; /* 这里可以改变 */ widt ...
分类:
Web程序 时间:
2020-07-01 09:39:51
阅读次数:
67
关于光线追踪 //embree https://github.com/embree/embree https://blog.csdn.net/qq_37366618/article/details/104271162 ...
分类:
其他好文 时间:
2020-06-30 14:32:00
阅读次数:
33
空间划分的数据结构(四叉树/八叉树/BVH树/BSP树/k-d树) 参考 https://www.cnblogs.com/KillerAery/p/10878367.html#四叉树八叉树-quadtreeoctree ...
分类:
其他好文 时间:
2020-06-30 12:57:20
阅读次数:
47
前言 我负责努力,其余交给运气。 写这篇文章,是因为之前写了一篇如何解决button点击范围过小的文章,然后评论区小伙伴说hitTest也可以,然后我就查了一下hitTest,发现真的有其牛逼之处,所以整理一下。 一、什么是hitTest 官方文档中介绍(若理解翻译的不对还请指正):- (UIVie ...
分类:
移动开发 时间:
2020-06-30 11:10:46
阅读次数:
82
当 display: flex 配合 justify-content: center 使用时可以让view水平居中 而配合 align-items: center 用时可以实现垂直居中效果 .card-image-container{ width: 40%; height: 90%; align-i ...
分类:
微信 时间:
2020-06-30 10:35:20
阅读次数:
123
这两种模型都是为了做到一种左右固定中间自适应的效果,听到的有人对于圣杯布局和双飞翼布局的描述很形象,首先一个圣杯的左右把柄和圣杯是一体的,所以body里面的代码是这样的: 1 <div class="container"> 2 <div class="center"></div> 3 <div cl ...
分类:
其他好文 时间:
2020-06-29 23:08:56
阅读次数:
112
我们可以通过QtCursor::setPos全局方法来进行鼠标位置的设置 以下的代码演示将光标移动到控件的左上角上。先将0,0点转换到桌面坐标 //QWidget* pWidget;QPoint pt(0,0);QPoint center = pWidget->mapToGlobal(pt);QCu ...
分类:
其他好文 时间:
2020-06-29 22:52:30
阅读次数:
227
当我们想showSnackBar的时候,需要通过Scaffold.of(context)得到Scaffold。但是如果这个context用错的话,flutter就会抛出错误。下面我们通过代码仔细看一下。 issue code import 'package:flutter/material.dart ...
分类:
其他好文 时间:
2020-06-29 17:01:38
阅读次数:
63