设置背景透明,一定要同时有这两句代码,单独一句不起作用 ui->customplot->setBackground(Qt::transparent); ui->customplot->setStyleSheet("background: transparent;"); ...
分类:
其他好文 时间:
2020-06-26 14:40:53
阅读次数:
78
页面定制 CSS 代码 html{overflow: overlay;scroll-behavior: smooth;}body{background:#fff;min-height:100%;height:100%;color:#314659!important;font-family:Lato, ...
分类:
其他好文 时间:
2020-06-25 18:01:05
阅读次数:
60
Creative Group Project -- Part III Sunlight Chat v. Sunny light Online Table of Contents 1. Background / Scenario 2. Legal Basis for Trial 3. Legal El ...
分类:
其他好文 时间:
2020-06-24 23:21:23
阅读次数:
135
ul{ padding: 0; margin: 0; } .swipper { width: 50%; background-color: #99a9bf; position: relative; overflow: hidden; .swipper-item { top:0; left: 0; p ...
分类:
其他好文 时间:
2020-06-24 22:01:21
阅读次数:
221
公共样式 .wrapper{ width: 300px; height: 300px; background-color: chartreuse; margin-right: 30px; display: inline-block; } .content{ width: 100px; height: ...
分类:
Web程序 时间:
2020-06-23 01:26:22
阅读次数:
87
利用css3里transform:scale 缩放属性控制 .box{ width: 100px; height: 1px; background: red; transform: scale(1,0.5); //scale(x轴缩放,y轴缩放) } 利用css画三角形 div{ height:0; ...
分类:
其他好文 时间:
2020-06-22 17:19:20
阅读次数:
90
html如何垂直居中一个浮动元素//方法一:已知元素的高宽#div1{background-color:#6699FF;width:200px;height:200px;position:absolute;//父元素需要相对定位top:50%;left:50%;margin-top:-100px;/ ...
分类:
Web程序 时间:
2020-06-22 11:14:43
阅读次数:
82
注册表添加右键菜单: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\Terminal Here] [HKEY_CLASSES_ROOT\Directory\Background\s ...
CSS总结 CSS(Cascadig style sheet):层叠样式表 选择器{属性1:值1;属性2:值2;……} CSS代码的引入方式 1.直接写在head标签里面 <head> <style> .c1{background-color:red;text-align:center;} </st ...
分类:
Web程序 时间:
2020-06-20 00:53:33
阅读次数:
60
什么是跨域? 跨域是指一个域下的文档或脚本试图去请求另一个域下的资源,这里跨域是广义的。 广义的跨域: 1.) 资源跳转: A链接、重定向、表单提交 2.) 资源嵌入: <link>、<script>、<img>、<frame>等dom标签,还有样式中background:url()、@font-f ...
分类:
其他好文 时间:
2020-06-19 17:53:14
阅读次数:
38