font-weight

数组名的含义.xml

二次信任 提交于 2020-03-30 17:22:57
*/ /*--> */ 数组名的含义 int a[2]={1,2}; cout<<&a<<endl; cout<<a<<endl; cout<<&a[0]<<endl; cout<<*a<<endl; cout<<sizeof(a)<<endl; 0012F0C8 0012F0C8 0012F0C8 1 8 由此可见, 数组名a的值、&a、&a[0]的值相同,而a[0]为数组的第一个元素。 我们可以推断: 编译器没有为数组名分配空间,但编译器对数组名做了特殊处理 即是, 数组名 为数组首地址, 而且 &数组名 也是代表的数组首地址。 int a[4]={1,2,3,4}; int (*p)[4]; p=a; // 这种赋值是错误的 p=&a; // 这种赋值是正确的,原因p是数组指针 所以应将数组的地址赋值给p // 就如同p若为整形指针,则应将整形的地址赋值给p // 虽然在实际中,数组名与&数组名 都是同一个值,但是编译器在逻辑上仍然将a视为数组,将&a视为取数组的地址 // 所以数组指针=&数组名 即p=&a; 又如程序: int a[3][4]={1,2,3,4,5,6,7,8,9,10,11,12}; int (*p)[4]; for(p=&a[0];p<&a[0]+3;p++) cout<<&p<<endl; cout<<endl; for(p=&a[0];p<&a[0

div设置多个class

≯℡__Kan透↙ 提交于 2020-03-26 08:03:48
在 HTML 中,一个 class 值中可能包含一个词列表,各个词之间用空格分隔。例如,如果希望将一个特定的元素同时标记为重要(important)和警告(warning),就可以写作: <p class="important warning"> This paragraph is a very important warning. </p> 这两个词的顺序无关紧要,写成 warning important 也可以。 我们假设 class 为 important 的所有元素都是粗体,而 class 为 warning 的所有元素为斜体,class 中同时包含 important 和 warning 的所有元素还有一个银色的背景 。就可以写作: .important {font-weight:bold;} .warning {font-weight:italic;} .important.warning {background:silver;} //相当于两个class有相同的样式。 其实是一个DIV拥有两个Class 空格并不是一个CLASS,用jquery你只需要$(".import")或 $(".warning")就可将其选定。 来源: https://www.cnblogs.com/rcstudy/p/5009132.html

CentOS升级Python2.7及安装pip

◇◆丶佛笑我妖孽 提交于 2020-03-22 05:40:59
*/ /*--> */ CentOS升级Python2.7及安装pip CentOS升级Python2.7及安装pip 1) 升级Python2.7 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 python -V # 查看版本:Python 2.6 . 6 mkdir -p ~/Env/python; cd ~/Env/python # 创建个目录 wget --no-check-certificate https: //www.python.org/ftp/python/2.7.6/Python-2.7.6.tar.xz tar Jxvf Python- 2.7 . 6 .tar.xz cd Python- 2.7 . 6 ./configure --prefix=/usr/local/py- 2.7 . 6 # "./configure -h" 查看帮助 make # 报模块缺失时,有需要的安装后重make # issue: INFO: Can't locate Tcl/Tk libs and/or headers # Python build finished, but the necessary bits to build these

串口通讯的python模块——pySerial

二次信任 提交于 2020-03-21 07:12:26
pySerial Overview This module encapsulates the access for the serial port. It provides backends for Python running on Windows, Linux, BSD (possibly any POSIX compliant system), Jython and IronPython (.NET and Mono). The module named "serial" automatically selects the appropriate backend. It is released under a free software license, see LICENSE.txt for more details. (C) 2001-2008 Chris Liechti cliechti@gmx.net The project page on SourceForge and here is the SVN repository and the Download Page . The homepage is on http://pyserial.sf.net/ Features same class based interface on all supported

小米商城首页的实现

假装没事ソ 提交于 2020-03-08 04:43:15
小米首页 效果图 html代码 由于代码过多,上传困难。 请访问链接:https://share.weiyun.com/5BWIENo 小米商城源文件 里面附带完整的源码文件 css代码 * { margin : 0 ; padding : 0 ; } ul,ol,li { list-style : none ; } img { display : block ; width : 100% ; } a { text-decoration : none ; } h1,h2,h3,h4 { font-size : 16px ; } body { font-size : 14px ; color : #000000 ; font-family : 宋体 , 微软雅黑 ; } html, body { width : 100% ; } /* css common */ .l { float : left ; } .r { float : right ; } .clear:after { content : "" ; display : block ; clear : both ; } .container { width : 1226px ; margin : 0 auto ; position : relative ; } .container-fluid { position :

SharePoint Designer - Workflow

一世执手 提交于 2020-03-04 11:36:16
另一篇文章 SharePoint 2013 - Designer Workflow 1. Set field in current item : 不要连续多次使用,否则在发布时会出现unexpected error;当需要同时更新几个字段时,使用update list item。 2. Error:   (1)Errors were found when compiling the workflow. The workflow files were saved but cannot be run. Unexpected error on server associating the workflow。 --------http://support.microsoft.com/kb/2557533 3. Wait for Field Change in Current Item: 可使用此活动将工作流停顿在某一步; 4. 获取InfoPath的文件名(含扩展名)时,可以用 'Name (for use in forms)',或者Title属性,但不要使用Name属性,因为Name属性不包含扩展名; 5. Email 模板 <head><style>TABLE.mail { border-style:none; border-collapse:collapse; font:8pt

性能优化 | JVM性能调优篇——来自阿里P7的经验总结

断了今生、忘了曾经 提交于 2020-02-29 01:06:50
VM 调优概述: 性能定义: 吞吐量 - 指不考虑 GC 引起的停顿时间或内存消耗,垃圾收集器能支撑应用达到的最高性能指标。 延迟 - 其度量标准是缩短由于垃圾啊收集引起的停顿时间或者完全消除因垃圾收集所引起的停顿,避免应用运行时发生抖动。 内存占用 - 垃圾收集器流畅运行所需要的内存数量。 调优原则 GC 优化的两个目标: 将进入老年代的对象数量降到最低 减少 Full GC 的执行时间 GC 优化的基本原则是:将不同的 GC 参数应用到两个及以上的服务器上然后比较它们的性能,然后将那些被证明可以提高性能或减少 GC 执行时间的参数应用于最终的工作服务器上。 将进入老年代的对象数量降到最低 除了可以在 JDK7 及更高版本中使用的 G1 收集器以外,其他分代 GC 都是由 Oracle JVM 提供的。关于分代 GC,就是对象在 Eden 区被创建,随后被转移到 Survivor 区,在此之后剩余的对象会被转入老年代。也有一些对象由于占用内存过大,在 Eden 区被创建后会直接被传入老年代。老年代 GC 相对来说会比新生代 GC 更耗时,因此,减少进入老年代的对象数量可以显著降低 Full GC 的频率。你可能会以为减少进入老年代的对象数量意味着把它们留在新生代,事实正好相反,新生代内存的大小是可以调节的。 降低 Full GC 的时间 Full GC 的执行时间比 Minor

video.js

Deadly 提交于 2020-02-24 01:54:41
video.js 是一款基于HTML5的自定义样式网络视频播放器,会在video标签基础上新增一些自定义样式和一些小功能,此外它还会自动检测浏览器对HTML5的支持情况,如果不支持HTML5则使用Flash播放器。 1 首先现引入 video-js.css 和 video.min.js   video-js.css .video-js .vjs-big-play-button .vjs-icon-placeholder:before,.video-js .vjs-modal-dialog,.vjs-button>.vjs-icon-placeholder:before,.vjs-modal-dialog .vjs-modal-dialog-content{position:absolute;top:0;left:0;width:100%;height:100%}.video-js .vjs-big-play-button .vjs-icon-placeholder:before,.vjs-button>.vjs-icon-placeholder:before{text-align:center}@font-face{font-family:VideoJS;src:url(../font/2.0.0/VideoJS.eot?#iefix) format("eot")}@font

blog主题——樱花

北城余情 提交于 2020-02-14 18:19:36
贮存一下,blog代码 QAQ 页脚html <!--live2d--> <script src="https://blog-static.cnblogs.com/files/zouwangblog/autoload.js"></script> <!--live2dend--> <!--放大图片--> <link rel="stylesheet" type="text/css" href="https://blog-static.cnblogs.com/files/zouwangblog/zoom.css"> <script src="https://cdn.bootcss.com/jquery/1.8.3/jquery.min.js"></script> <script src="https://cdn.bootcss.com/bootstrap/3.2.0/js/transition.js"></script> <script src="https://blog-static.cnblogs.com/files/zouwangblog/zoom.js"></script> <script type='text/javascript'>$('#cnblogs_post_body img').attr('data-action', 'zoom');</script> <!-

CSS样式之文字属性

瘦欲@ 提交于 2020-02-07 17:36:25
字体属性 文本属性呢,自我认为就是写文档的一些格式属性,例如:字体颜色,字体加粗,字体大小,字体类型等,而且我们在输出测试用例报告的时候也可以用到这些属性,对测试报告进行优化。 <html> <head lang="en"> <meta charset="UTF-8"> <title>字体属性</title> <style> .box{ /*字体颜色*/ color: red; /*字体加粗*/ font-weight:bold ; /*font-weight: normal;*/ /*font-weight: 700;*/ /*font-weight: bolder;*/ /*font-weight: lighter;*/ /*字体大小*/ font-size: 20px; /*字体类型*/ font-style: italic; /*字体*/ font-family: 幼圆,楷体,微软雅黑; } h1{ /*font-weight: normal;*/ } </style> </head> <body> <div class="box">小测试</div> <h1>一号标题</h1> </body> </html> text属性 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title