CSS固定菜单栏 - 当鼠标向下滑动时,位于最上面的导航一直不动,而内容发生变化 <style> * { padding: 0px; margin: 0px; } .navbar { width: 100%; background: black; /* 固定住导航条 */ position: fix ...
分类:
Web程序 时间:
2021-02-17 14:24:01
阅读次数:
0
一、原理: ①、先做一个实心的三角: <div class="box"> <em></em> <span></span> </div> .box em { position: absolute; top: 30px; left: 20px; width: 0; height: 0; border: ...
分类:
Web程序 时间:
2021-02-17 14:07:02
阅读次数:
0
相对定位 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> * { margin: 0; padding: 0; } .box1{ w ...
分类:
其他好文 时间:
2021-02-15 11:57:41
阅读次数:
0
类型转换 低——————————————————高 byte->short->char->int->long->float->double 由于Java是强类型语言,所以进行有些运算的时候,需要用到类型转换 运算中,不同类型的数据先转化为同一类型,然后进行运算 强制类型转换 (类型)变量名 高——低 ...
分类:
编程语言 时间:
2021-02-10 12:58:59
阅读次数:
0
我们使用OWC Chart生成曲线的时候,可能遇到这种数据表: 这些数据数量级差距较大,通常的去先做出来是这个样子的: 这样对比不好看数据变化,OWC可以使用增加数值轴的方式,让不同的变量绑定不同的数值轴,很好的解决了这个问题。在画面上添加一个按钮,用于生成多数值轴曲线图,按钮的鼠标点击事件vbs代 ...
数据类型 Java是强类型语言,要求变量的使用要严格符合规定,所有变量必须先定义后才能使用 基本类型 数值类型 整数类型(byte,short,int,long) byte占一个字节范围:-128—127 short占两个字节范围:-32768—32767 int占四个字节范围:-214748364 ...
分类:
编程语言 时间:
2021-02-09 12:24:02
阅读次数:
0
Given a string s of '(' , ')' and lowercase English characters. Your task is to remove the minimum number of parentheses ( '(' or ')', in any position ...
分类:
其他好文 时间:
2021-02-09 12:12:28
阅读次数:
0
定义:cp is short for copy, 意为复制文件。用于将文件或目录从一个位置复制到另一个位置。 参数列表预览: 用法1: $ cp sourceFile destinationFile 当sourceFile 和 destinationFile 参数都是文件名时,cp 命令将源文件内容 ...
分类:
系统相关 时间:
2021-02-08 11:48:27
阅读次数:
0
public class Demo01 { public static void main(String[] args) { //八大基本数据类型 //整数 int num=10; //最常用的 byte num1=20; short num3=30; long num4=30L;//Long类型要 ...
分类:
其他好文 时间:
2021-02-08 11:43:03
阅读次数:
0
// language C with STL(C++) // 剑指44 // https://leetcode-cn.com/problems/shu-zi-xu-lie-zhong-mou-yi-wei-de-shu-zi-lcof/ // 同主站400题 // https://leetcode- ...
分类:
其他好文 时间:
2021-02-06 11:54:26
阅读次数:
0