目标:52,48,56- 公告:50,48,49,55,196,234,52,212,194,53,200,213,200,171,195,230,184,252,208,194- 标题目标:208,194,176,230,212,246,188,211,50,184,246,183,254,206 ...
分类:
其他好文 时间:
2019-11-30 21:00:39
阅读次数:
153
1.babel-plugin-transform-remove-console 去掉console的插件 //开发阶段不需要但是发布后需要用到的babel插件 const prodPlugins = [] if (process.env.NODE_ENV 'production') { prodPl ...
分类:
其他好文 时间:
2019-11-28 22:49:32
阅读次数:
165
transform transform : none | <transform-function> [ <transform-function> ]* 也就是: transform: rotate | scale | skew | translate |matrix;注意:transform(变形) ...
分类:
其他好文 时间:
2019-11-27 11:54:49
阅读次数:
59
转自https://www.cnblogs.com/atc001/p/8084797.html DFT与傅里叶变换的理解 根据信号的不同类型,可以把傅立叶变换分为四类: 1) 非周期性连续信号: 傅立叶变换(Fourier Transform,FT) 2) 周期性连续信号: 傅立叶级数(Fourie ...
分类:
其他好文 时间:
2019-11-24 19:24:45
阅读次数:
85
SVG 1.SVG简介 SVG 指可伸缩矢量图形 (Scalable Vector Graphics) SVG 用来定义用于网络的基于矢量的图形 SVG 使用 XML 格式定义图形 SVG 图像在放大或改变尺寸的情况下其图形质量不会有所损失 SVG 是万维网联盟的标准 SVG 与诸如 DOM 和 X ...
分类:
其他好文 时间:
2019-11-24 13:47:16
阅读次数:
73
???注意:未知盒子宽高并不是盒子没有宽高,是不知道盒子宽高的具体值是多少。 垂直水平居中方法(transform:translate) 让我垂直水平居中 .parent{ position: relative; width: 100px; height: 100px; border: 1px so ...
分类:
其他好文 时间:
2019-11-24 12:16:07
阅读次数:
64
问题描述 给定一个整数数组,返回range sum 落在给定区间[lower, upper] (包含lower和upper)的个数。range sum S(i, j) 表示数组中第i 个元素到j 个元素之和。 Note : A naive algorithm of O(n2) is trivial. ...
分类:
其他好文 时间:
2019-11-24 12:00:27
阅读次数:
69
如上图所示:要实现这样一个切掉一角的边角。 思路就是:先用一个跟背景类似的一块区域盖住那个角,然后再画一条线,接在缺口处。 css代码: .bian{ height:200px; width:500px; position:relative; border:2px solid #6ca2f6; ba ...
分类:
Web程序 时间:
2019-11-21 16:55:11
阅读次数:
279
using UnityEngine;using System;using System.Collections; public class CameraController : MonoBehaviour { // Text m_debugTip; public bool canRotation_X ...
分类:
移动开发 时间:
2019-11-20 12:33:14
阅读次数:
78
WPF弹性、惯性效果。已发布在了一些网站,都是这里写的 代码改编自微软示例代码库 // Copyright © Microsoft Corporation. All Rights Reserved. // This code released under the terms of the // Mi ...