盒子阴影 CSS3中新增了盒子阴影,我们可以使用box-shadow属性为盒子添加阴影。 语法: box-shadow: h-shadow v-shadow [blur] [spread] [color] [inset] 值 描述 h-shadow 必需。水平阴影的位置。正数向右偏移,负数向左偏移。 ...
分类:
Web程序 时间:
2021-05-24 14:40:25
阅读次数:
0
这里的Qstring字符串输出的内容,一开始没有看的懂,在经过补习计算机相关输出知识后,就一下子懂了,其实这个很简单,话不多说,上程序,还是上一个文章的程序。 ColorItem::ColorItem() : color(QRandomGenerator::global()->bounded(256 ...
分类:
其他好文 时间:
2021-05-24 14:28:22
阅读次数:
0
public class WeatherUtil { private static final Logger LOGGER = LoggerFactory.getLogger(WeatherUtil.class); public static String doGet(String path){ S ...
分类:
其他好文 时间:
2021-05-24 14:15:35
阅读次数:
0
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Data; using System.Data.SqlClient; using Sys ...
分类:
数据库 时间:
2021-05-24 13:43:26
阅读次数:
0
promise.then 如果不加第二个参数则会执行catch方法, 加第二个参数则不会执行catch方法。 var pro=new Promise((resolve,reject)=>{ // resolve(); reject(); }) pro.then(()=>{ console.log(' ...
分类:
其他好文 时间:
2021-05-24 13:41:41
阅读次数:
0
bool #布尔类型 True #真 False #假 l = [1,2,3,4] print( 1>2 ) #False print( 4 in l) #True print(1 not in l) #False print( len(l) > 3) #True 比如,想写个while的死循环,可 ...
分类:
其他好文 时间:
2021-05-24 13:31:59
阅读次数:
0
<el-tree :data="data" node-key="id" ref="tree" icon-class="el-icon-share" :props="defaultProps"> <template #default="scope"> <div class="custom-node"> ...
分类:
其他好文 时间:
2021-05-24 13:29:53
阅读次数:
0
locate:判断字符串(string)中是否包含另一个字符串(subStr) 函数返回subStr在string中出现的位置 一、使用方法 locate(subStr,string) > 0 二、功能类似函数 POSITION(substr IN str) 函数返回字符串中第一次出现的子字符串的位 ...
分类:
数据库 时间:
2021-05-24 13:28:48
阅读次数:
0
SQLFlow 是用于追溯数据血缘关系的工具,它自诞生以来以帮助成千上万的工程师即用户解决了困扰许久的数据血缘梳理工作。 数据库中视图(View)的数据来自表(Table)或其他视图,视图中字段(Column)的数据可能来自多个表中多个字段的聚集(aggregation)。 表中的数据可能通过ETL ...
分类:
数据库 时间:
2021-05-24 13:22:15
阅读次数:
0
一、旧 API 存在多线程安全问题 import java.text.SimpleDateFormat; import java.time.LocalDate; import java.time.format.DateTimeFormatter; import java.util.ArrayList ...
分类:
编程语言 时间:
2021-05-24 13:14:37
阅读次数:
0