#新建url文件,以名filelist.txt为例 vim filelist.txt #把文件下载地址url填进去 #执行命令下载 wget -bc -i filelist.txt #选项说明 -b, --background 启动后转入后台。 -c, --continue 继续下载部分下载的文件。 ...
分类:
Web程序 时间:
2021-04-24 13:11:34
阅读次数:
0
1.table-cell <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> .box{ width: 200px; height: 200px; background-color: red; di ...
分类:
Web程序 时间:
2021-04-22 15:56:20
阅读次数:
0
Vue使用Element-ui Table 合并行,官方只是一个非常简单的合并例子,通常业务都是相同的某个字段进行合并。 效果图 代码实现 1、Table <el-table :data="dataTable" border :header-cell-style="{background: '#FA ...
分类:
其他好文 时间:
2021-04-21 12:57:40
阅读次数:
0
一、精灵图 -->网站中的小图标,放在一张大的png中,使用小图时测量容器的大小,测量小图在整个精灵图中的位置,在background中设置负的位置 二、盒子模型 1、构成:内容 + padding + border + margin (margin控制位置,其余三个控制大小) 2、margin : ...
分类:
Web程序 时间:
2021-04-13 12:43:30
阅读次数:
0
1、为table添加 :header-cell-style="rowClass" 2、通过rowClass 将要跨列的columnIndex 添加属性 colSpan : 2 被合并的列隐藏 const tableHeaderStyle = { background: '#305496', colo ...
分类:
其他好文 时间:
2021-04-08 13:25:19
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>12生肖相册</title> <style> html{ background: #000; height: 100%; } /*最外层容器样式*/ .wrap{ position ...
分类:
其他好文 时间:
2021-04-07 10:49:56
阅读次数:
0
一 事件绑定的两种方式 $('xx').click(function(){ })$('xx').on('click',function(){}) 二 常用事件 1.click() 点击事件 $('.d1').click(function () { $(this).css({'background-c ...
分类:
Web程序 时间:
2021-04-06 14:22:41
阅读次数:
0
<template> <view class=""> <HeadBar title="标题" background_b="#f3212a" color="black" leftbtnclass="gc-000"></HeadBar> <web-view src="外部链接"></web-view> ...
分类:
移动开发 时间:
2021-03-29 12:48:13
阅读次数:
0
字体 字体相关的样式 color 用来设置字体颜色 font-size 字体的大小 与font-size相关的单位 em 相当于当前元素的一个font-size rem 相对于根元素的一个font-size Em和rem Em - em是相对于元素的字体大小来计算的 - 1em = 1font-si ...
分类:
其他好文 时间:
2021-03-29 12:22:30
阅读次数:
0
5. CSS选择器 CSS选择器(Cascading Style Sheet,层叠样式表) css代码的写法:hl{color:red;} 选择器{css属性:属性值;} css代码的引入 # 方式一?head标签里面写<style> div{ background-color:red; heigh ...
分类:
Web程序 时间:
2021-03-26 15:17:00
阅读次数:
0