##使用方法 用css中的display:none方法; 用chrome浏览器,右键审查,获得css路径,在按右键,审查,copy-selector; 使用stylish等插件; ###虎扑css .hp-threeNav, body > div.hp-header.hp-header-A, #ta ...
分类:
Web程序 时间:
2020-07-11 17:39:56
阅读次数:
104
1.grid布局实现(一) .father{ display:grid; align-item:center; justify-items:center; } 2.grid布局实现(二) .father{ display:grid; align-item:center; justify-conten ...
分类:
Web程序 时间:
2020-07-10 13:11:05
阅读次数:
90
@{ Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>协同办公云平台-登录</title> <link href="~/Conten ...
分类:
Web程序 时间:
2020-07-10 09:46:03
阅读次数:
96
1.让菜单生成不经过动态路由 修改 src/router/index.js import Vue from 'vue' import Router from 'vue-router' import { constantRouterMap, asyncRouterMap } from '@/confi ...
分类:
其他好文 时间:
2020-07-10 09:33:25
阅读次数:
194
<template> <div class="product"> <el-col :span="2"> <el-button type="success" @click="openInsertDialog">添加</el-button> </el-col> <el-col :span="2"> <e ...
分类:
编程语言 时间:
2020-07-10 00:38:19
阅读次数:
74
dfs找到解,return true, 不需要继续找了,不然回溯将恢复整个棋盘。 或者, 记录下该解,继续找下一个解(如果存在多解, 但一般不需要)。 import java.util.*; public class Main { static int[][] grid; static boolea ...
分类:
其他好文 时间:
2020-07-09 12:27:26
阅读次数:
52
一,调试 1.当我们开始使用对象的时候,你就容易遇到一些新的异常。如果你试图读取一个不存在的属性,就会得到一个属性错误: >>> p = Point() >>> p.x = 3.0 >>> p.y = 4.0 >>> p.z #没有声明,就直接读取属性p.z,会报错属性错误。 Traceback ( ...
分类:
编程语言 时间:
2020-07-09 12:27:04
阅读次数:
69
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/ve ...
分类:
其他好文 时间:
2020-07-08 09:14:32
阅读次数:
54
第一种写法: wxml: <view class="page_first"> <view class="page_li" wx:for="{{4}}"></view> </view> wxss: .page_first{padding: 30rpx;box-sizing: border-box;di ...
分类:
其他好文 时间:
2020-07-07 15:44:41
阅读次数:
58
题意:给一个$n$X$m$的矩阵,矩阵中某个数字$k$表示其四周恰好有$k$个不为0的数字,你可以使任意位置上的数字变大,如果操作后满足条件,输出新矩阵,否则输出NO. 题解:贪心,既然能使任意位置加大任意数值,那么我们可以将所有位置都给他填满,这样的话,只要是满足条件的情况就都能这样输出,所以我们 ...
分类:
其他好文 时间:
2020-07-07 15:31:22
阅读次数:
48