页面定制代码: body { //background: url(https://images.cnblogs.com/cnblogs_com/TomHe789/1652276/o_2002220059545d70ca19b2f73.jpg) fixed; background-color: whi ...
分类:
其他好文 时间:
2020-03-16 09:16:13
阅读次数:
122
描述现有一整数集(允许有重复元素),初始为空。我们定义如下操作:add x 把x加入集合del x 把集合中所有与x相等的元素删除ask x 对集合中元素x的情况询问对每种操作,我们要求进行如下输出。add 输出操作后集合中x的个数del 输出操作前集合中x的个数ask 先输出0或1表示x是否曾被加 ...
分类:
其他好文 时间:
2020-03-15 20:32:51
阅读次数:
64
1 // 312/313 始终会出现一种情况——>全0 2 3 // 后来引进了双指针算法 4 class Solution 5 { 6 public: 7 vector<vector<int>> threeSum(vector<int>& nums) 8 { 9 vector<vector<int ...
分类:
其他好文 时间:
2020-03-15 18:57:12
阅读次数:
62
【渐变的使用】:linear-gradient() =默认从上往下渐变 div{ background-image:linear-gradient(red,yellow,green} =控制向右方向 div{ background-image:linear-gradient(to right, re ...
分类:
Web程序 时间:
2020-03-14 20:16:04
阅读次数:
78
作为一名程序媛在编写页面的时候经常还会遇到水平或者垂直居中的一些布局今天正好有空就把各种居中的方式都总结了一下分享给大家希望能给大家带来帮助 1.已知宽高背景图与背景图上的文字都水平垂直居中 .img-bg{ position: absolute; background: url("http://s ...
分类:
Web程序 时间:
2020-03-14 19:50:53
阅读次数:
70
1 <!-- 一般用作活动专题网页制作,平常不太用 --> 2 <!-- transition-property 设置过渡的属性,例如:width height background-color 3 transition-duration 设置过渡时间,比如:1s 500ms 4 transitio ...
分类:
Web程序 时间:
2020-03-14 17:07:36
阅读次数:
76
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> body{ background-color: gold; } .box{ f ...
分类:
Web程序 时间:
2020-03-14 16:44:52
阅读次数:
101
1 css语法 2 css导入样式 3 css选择器 3 1 基本选择器 3 2 组合选择器 3 3 分组和嵌套 3 4 属性选择器 3 5 伪类选择器 3 6 伪元素选择器 4 CSS选择器的优先级 5 css属性 5 1 文字相关的属性 5 2 宽度和高度 5 3 背景background 5 ...
分类:
Web程序 时间:
2020-03-14 01:21:57
阅读次数:
69
<template> <div id="app"> <div class="y_bj" :style="y_bj"></div> </div> </template> <script> import { Toast } from "vant"; export default { data() { r ...
分类:
其他好文 时间:
2020-03-13 20:53:39
阅读次数:
1162
1、在css中使用background引入static目录下的图片时,需使用相对路径例:background: url("../../../static/img/1.png");2、build > utils.js 添加代码 publicPath:'../../' 3、config > index. ...
分类:
Web程序 时间:
2020-03-12 18:55:52
阅读次数:
72