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
Session-State Modes ASP.NET session state supports several different storage options for session data. Each option is identified by a value in the Ses ...
分类:
其他好文 时间:
2020-06-23 10:28:23
阅读次数:
59
公共样式 .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
1。主要说一说,顶部导航和左侧菜单的联动和切换。主要 组件components->topbar->inedx.vue <el-menu :default-active="activeMenu" class="el-menu-bar" mode="horizontal" :background-col ...
分类:
其他好文 时间:
2020-06-18 14:37:32
阅读次数:
140
对于想通过程序更改某个对话框的背景图,只需调用该对话框对象的setStyleSheet()函数并如下格式指定所要显示的图片路径即可;双引号前面的“QDialog”为指定的作用域。 this->setStyleSheet("QDialog{background-image: url(:/backgro ...
分类:
其他好文 时间:
2020-06-17 12:51:45
阅读次数:
55