一、定义样式 <style> .blueBack { background-color: blue; } .yellowBack { background-color: yellow; } </style> 二、定义两个按钮,一个div <div id="vueFirst"> <div :class ...
分类:
Web程序 时间:
2020-07-19 15:56:07
阅读次数:
158
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .bg{ background-color:blue ; width: 100px; height: 100px; ...
分类:
其他好文 时间:
2020-07-18 13:41:59
阅读次数:
56
\(\color{blue} \text {【题目描述】}\) 一棵树,点编号1 . . . n,Q次询问编号[l, r]的点的导出子图中有几个连通块。 \(\color{blue}\text{【输入】}\) 第一行n, Q。 接下来n ? 1行每行两个数表示一条树边(u, v)。 接下来Q行每行两 ...
分类:
其他好文 时间:
2020-07-17 14:02:42
阅读次数:
81
相邻的border会平分所占的区域,出现一个斜线, .my_triangle{ width: 10px; height: 10px; background-color: blue; border-width: 100px ; border-style: solid; border-left-colo ...
分类:
其他好文 时间:
2020-07-13 18:40:16
阅读次数:
71
1.初识jQuery以及jQuery的主要内容 参考网址: https://www.cnblogs.com/yangshuwen/p/13183803.html 2.jQuery选择器 1.基本选择器 $("h1").css("color", "blue"); //标签选择器 $(".price") ...
分类:
Web程序 时间:
2020-07-10 21:27:24
阅读次数:
108
基础选择器 <style> .cls1{ color: blue; } div{ color:green; } #div1{ color: red; } </style> 基础选择器 id选择器:选择具体的id属性值的元素.建议在一个html页面中id值唯一 语法:#id属性值 元素选择器:选择具有 ...
分类:
Web程序 时间:
2020-07-10 00:13:34
阅读次数:
915
Reverse Words in a String Given an input string, reverse the string word by word. Example 1: Input: "the sky is blue" Output: "blue is sky the" Exampl ...
分类:
其他好文 时间:
2020-07-07 15:09:44
阅读次数:
43
准备条件: ①枚举类型: 1 public enum enumColor 2 { 3 Red = 1, 4 Yellow, 5 Green, 6 Blue, 7 White, 8 Black 9 } ②以下状态都是理想状态,并未对错误数据进行处理。 1.枚举类型转换为字符串 private stri ...
1, background-image: linear-gradient(45deg, red, yellow, blue); ...
分类:
Web程序 时间:
2020-07-04 18:39:55
阅读次数:
71
A∩B array_intersect example: $array1 = array("a" => "green", "red", "blue"); $array2 = array("b" => "green", "yellow", "red"); $result = array_interse ...
分类:
Web程序 时间:
2020-06-30 00:46:45
阅读次数:
92