娱乐八卦

CSS(一) CSS背景

梦想的初衷 提交于 2020-02-28 21:19:08
CSS背景 ---------- 既有css3之前的用法也有css3的用法,没有区分出来哈,我想要速成就没有管这个。 CSS设置背景颜色: 属性background-color,这个属性的作用范围是,background-color 属性为元素设置一种纯色。这种颜色会填充元素的内容、内边距和边框区域,扩展到元素边框的外边界(但不包括外边距)。如果边框有透明部分(如虚线边框),会透过这些透明部分显示出背景色。这个器是很关键的。验证如下:margin是没有效果的。 <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" href="css/backgroud-color.css" /> </head> <body> <div id="div1"><p>this is p</p></div> <div id="div2"><p>this is p</p></div> <div id="div3"><p>this is p</p></div> </body> </html> //css内容 p { margin: 0px; } div { background-color: red; } #div2 { padding: 10px; } #div3 { padding: 10px; border

设置背景颜色

China☆狼群 提交于 2020-02-27 03:12:05
<html> <head> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <title> 设置背景颜色 </title> <script type="text/javascript"> function AddOption(color) { //alert(color); if(color==1) document.getElementById("myDiv").style.backgroundColor="red"; else if(color==2) document.getElementById("myDiv").style.backgroundColor="green"; else if(color==3) document.getElementById("myDiv").style.backgroundColor="blue"; else if(color==4) document.getElementById("myDiv").style.backgroundColor="yellow"; else if(color==5) document.getElementById("myDiv").style.backgroundColor="orange"; } </script>

EJB3.0中关于Jpa的复合主键

柔情痞子 提交于 2020-02-26 06:37:41
当我们需要使用一个或多个属性变量(表中的一列或多列)联合起来作为主键,我们需要使用复合主键。在EJB3.0中复合主键要求我们编写一个复合主键类( Composite Primary Key Class )。下面是个小例子,在Student中要用sid和name做复合主键。 Student实体类: 1 import javax.persistence.Column; 2 import javax.persistence.Entity; 3 import javax.persistence.Id; 4 import javax.persistence.IdClass; 5 6 @Entity 7 @IdClass(StudentPK. class ) 8 public class Student { 9 10 private String sid; 11 private String name; 12 private String age; 13 14 @Id 15 public String getSid() { 16 return sid; 17 } 18 public void setSid(String sid) { 19 this .sid = sid; 20 } 21 22 @Id 23 public String getName() { 24 return name;

数码管的秘密

穿精又带淫゛_ 提交于 2020-02-16 10:47:23
环境: Cortex-M0 LPC1114FBD48/301 数码管 7SEG-COM-ANODE 1 在数码管上显示指定的数字 将数码管的7个引脚对应连接到控制器的PIO2_0~PIO2_6引脚上 原理图: 源代码: /* Main.c file generated by New Project wizard * * Created: 周日 2月 16 2020 * Processor: LPC1114FBD48/301 * Compiler: GCC for ARM */#include <LPC11xx.h>int main (void) { // Write your code here LPC_SYSCON->SYSAHBCLKCTRL |=(1<<6); LPC_GPIO2->DIR=0x7F; while (1) { LPC_GPIO2->DATA=0x24;//0010 0100‬ 2,5号高点平,不亮 } return 0; } 仿真后结果如图 7数码管引脚图,在网上找的图,脚的分布位置不一样,但对应关系是一样的 2 给数码管加一个开关 代码: /* Main.c file generated by New Project wizard * * Created: 周日 2月 16 2020 * Processor: LPC1114FBD48/301 *

揭秘央视春晚直播背后的技术硬实力

倾然丶 夕夏残阳落幕 提交于 2020-02-06 19:59:31
2020年1月24日晚间8点,一首开年贺岁歌舞《春潮颂》拉开了鼠年春晚的序幕。《这就是街舞》、2019第一神曲《野狼Disco》的改编版本《过年迪斯科》、《风雪饺子情》、《走过场》等众多的节目更是将春晚推向了一波又一波的高潮。 今年的春晚不仅演员阵容庞大,就连主持人阵容进行了“大换血”,各种创新的节目更是赢得观众的阵阵喝彩。本届春晚堪称一场科技的视觉盛宴,其中春晚舞台首次打造三层立体舞美,同时运用飞屏技术营造出360度环绕式景观,通过精良的视频制作,让观众在屏幕前就感受“裸眼3D”的极致体验。 不仅如此,今年春晚北京主会场与粤港澳大湾区、郑州分会场全面通过5G网络进行互动,央视首次制作8K超高清电视版2020春晚,为观众带来史无前例的视觉震撼。今年春晚还与快手合作,推出10亿春晚红包,通过创新大小屏联动方式,使得今年的春晚流量峰值再创历年新高。 然而,面对不断的流量“洪峰”和错综复杂的网络环境,对于背后的技术“后勤”却是一场实力的终极大考。为保障春晚直播的高质量、无卡顿地平稳传播,作为今年央视春晚后台技术支撑方之一的金山云,以更加完善的技术服务,协助客户迅速提升“战斗力”,全面护航央视网春晚直播、B站拜年祭,并全力支撑Top 10短视频客户打赢硬仗,以多元技术保障了千万级的互动直播,并赢得用户的一致好评。 “智能调度+多流择优”双引擎 护航央视春晚直播 多年以来

设置RadioButton控件的背景色.

你。 提交于 2020-02-05 06:16:27
RadioButton控件的opaqueBackground样式. 示例: 代码: <? xml version="1.0" encoding="utf-8" ?> <!-- http://blog.flexexamples.com/2008/06/18/setting-an-opaque-background-on-a-radiobutton-control-in-flex/ --> < mx:Application xmlns:mx ="http://www.adobe.com/2006/mxml" layout ="vertical" verticalAlign ="middle" backgroundColor ="white" > < mx:ApplicationControlBar dock ="true" > < mx:Form styleName ="plain" > < mx:FormItem label ="opaqueBackground:" > < mx:ColorPicker id ="colorPicker" /> </ mx:FormItem > </ mx:Form > </ mx:ApplicationControlBar > < mx:RadioButton id ="radioButton" label ="The quick brown

整形数组与字符串(字符数组)nex_permutation(或者是prve_permutation)的区别

谁都会走 提交于 2020-02-04 01:16:02
#include<iostream> #include<stdio.h> #include<algorithm> #include<cstring> using namespace std; int main() { int i,a[3]={2,1,3}; //sort(a,a+3);//没有这个的话,只能从当前排列。 for(int j=0;j<6;j++) { next_permutation(a, a+3);//可以循环,即超过最大排列后又从最小排列。 for(i=0;i<3;i++) printf("%d ",a[i]); printf("\n"); } return 0; } #include<iostream> #include<stdio.h> #include<algorithm> #include<cstring> using namespace std; int main() { int l,i; char a[15]; scanf("%s",a); l=strlen(a); //sort(a,a+l,);//没有这个的话,只能从当前排列。 printf("%s\n",a);//必须要把第一个输出 for(i=0;i<7;i++) { next_permutation(a, a+l);//可以循环 printf("%s\n",a); } return 0; }

CSS学习(6)--背景属性

一笑奈何 提交于 2020-01-29 01:46:43
background 版本:CSS1  兼容性:IE4+ NS4+ 继承性:无 语法: background : background-color || background-image || background-repeat || background-attachment || background-position 参数: 该属性是复合属性。 说明: 如使用该复合属性定义其单个参数,则其他参数的默认值将无条件覆盖各自对应的单个属性设置。 默认值为:transparent none repeat scroll 0% 0%。 尽管该属性不可继承,但如果未指定,其父对象的背景颜色和背景图将在对象下面显示。 示例: 1 div { background : red no-repeat scroll 5% 60% ; } 2 body { background : url("images/aardvark.gif") repeat-y ; } 3 pre { background : url("images/aardvark.gif") top ; } 4 caption { background : fuchsia ; } background-attachment 版本:CSS1  兼容性:IE4+ NS6+ 继承性:无 语法: background-attachment :

CSS圆角背景,适用于各主流浏览器的兼容

爱⌒轻易说出口 提交于 2020-01-27 20:43:00
(1)全部的代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Test</title> <style type="text/css"> body,div { margin: 0; padding: 0; } body { text-align: center; } .coner { margin:20px; position: relative; padding: 11px; width: 200px; height: 150px; background-color:#DCEAFF; } .comm { position: absolute; width: 11px; height: 11px; background: url(corner.gif) no-repeat; }

CSS 背景颜色

久未见 提交于 2020-01-26 13:21:31
前景颜色通常是字体的颜色,使用color属性。 背景颜色使用属性backgroud-color。颜色可以使用RGB表示,也可以使用十六进制表示,也可以使用颜色名称表示,还可以使用HSL表示,还可以使用RGBA表示。 示例 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 <!DOCTYPE html> < html lang = "zh" > < head > < meta charset = "UTF-8" > < title >背景颜色</ title > < style > *{ color:#fff; } div{ height:100px; width:200px; padding:16px; } #a{ } #b{ } #c{ } #d{ } #e{ } </ style > </ head > < body > < div id = "a" > rgb(120,45,96) </ div > < div id = "b" > #F7643fe </ div > < div id = "c" > #red </