1 win + R regedit 2.找到Directory\Background\Shell 右键新建一个项 3.新建一个command项 4.修改command的指向 参考:https://blog.csdn.net/qq_33202928/article/details/85277943 h ...
分类:
其他好文 时间:
2020-03-27 10:53:14
阅读次数:
56
css样式: button{ display: block; margin: 0px auto 20px; } div{ width: 200px; height: 200px; background: pink; margin: 0 auto; display: none; } HTML内容: < ...
分类:
Web程序 时间:
2020-03-26 13:53:08
阅读次数:
90
Learning Discriminative Model Prediction for Tracking 2020-03-26 11:45:15 Paper: ICCV-2019 Code: https://github.com/visionml/pytracking 1. Background ...
分类:
其他好文 时间:
2020-03-26 12:25:26
阅读次数:
214
效果: body{ margin: 0px; height:100%; width:100%; background-image: url("bg.png"); background-position-x: 0px; background-position-y: 0px; background-re ...
分类:
其他好文 时间:
2020-03-25 23:36:35
阅读次数:
87
1 <style> 2 .box{ 3 float: left; 4 width: 100px; 5 height: 100px; 6 background: url(images/3.jpg) no-repeat left top; 7 background-size: 50px; 8 paddi ...
分类:
其他好文 时间:
2020-03-25 19:20:52
阅读次数:
66
1.输入一串整数,输入命令排序! 输入 a t 在这串整数后面添加整数 t, 输入 c\m\n 有 n 替换 m, 输入 d t 删除 t, 输入 s 排序。 #include <iostream> #include <vector> #include <cstring> #include <alg ...
分类:
其他好文 时间:
2020-03-25 01:44:32
阅读次数:
64
迭代器失效问题一般是指对于stl容器来说,调用erase某迭代器之后,就不能再使用这个iterator了。 解决方法: (1):erase(iter++);这样可以继续使用该iter (2):it=erase(iter);这是利用erase函数的返回值,一般的erase函数都会返回一个删除迭代器的后 ...
分类:
编程语言 时间:
2020-03-25 00:58:50
阅读次数:
71
一.集合概览 二.操作 set自带的函数常用的有10种: set<int> a 建立一个名字为a、类型为int的集合。a.insert(b) 在集合中插入一个数b,如果这个数已经存在就什么也不干 a.erase(b) 在集合中删除一个数b,如果这个数不存在就什么也不干 a.erase(l) 在集合中 ...
分类:
其他好文 时间:
2020-03-24 18:56:08
阅读次数:
66
1: transition div { width: 200px; height: 100px; background-color: pink; /* transition: 要过渡的属性 花费时间 运动曲线 何时开始; */ /* transition: width 0.6s ease 0s, h ...
分类:
Web程序 时间:
2020-03-24 15:53:12
阅读次数:
74
最近做个项目,需要像淘宝秒杀页那样的tab标签,可滑动可点击的,就自己做了个组件记录一下 <template> <div class="tab" :style="{background:background}" ref="scroll"> <div class="navCon" :style="{w ...
分类:
其他好文 时间:
2020-03-24 15:44:52
阅读次数:
65