<style> html{ filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscal ...
分类:
Web程序 时间:
2020-09-18 01:16:16
阅读次数:
39
简介 Qt 官方开源了一个虚拟键盘的示例,该示例提供两种使用方式:一种用于桌面平台,另一种用于嵌入式平台,示例采用嵌入式平台方式显示。它们区别是前者脱离窗口应用于全局,后者依附于窗口。 示例在 QtCreator 软件可以找到: 或在以下 Qt 安装目录找到: C:\Qt\{你的Qt版本}\Exam ...
分类:
其他好文 时间:
2020-09-18 01:15:41
阅读次数:
64
<Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/200 ...
###前言上篇文章主要讲述了CSS样式更改中的裁剪、Z-Index、清除、改变元素的特性基础知识,这篇文章我们来介绍下CSS样式更改中2D转换的基础用法。###2D转换1).元素位移translate(左边,顶边)div{transform:translate(50px,100px);-ms-transform:translate(50px,100px);/*IE9*/-webkit-transf
分类:
Web程序 时间:
2020-09-17 22:35:40
阅读次数:
44
问题报错内容: ImportError: 'testCase' module incorrectly imported from 'E:\\Auto_code\\ui-and-api\\apiautotest-master\\testCase'. Expected 'E:\\Auto_code\\u ...
分类:
其他好文 时间:
2020-09-17 21:43:35
阅读次数:
45
两天的Linux学习,受益匪浅。 整理下知识,就从最基本的开始吧(也只会些基本的)。 cd(change directory)改变目录 ls(list)列出目录内容 pwd(print work directory)打印当前目录 显示出当前工作目录的绝对路径 mkdir(make Directory ...
分类:
系统相关 时间:
2020-09-17 21:07:08
阅读次数:
128
数据的持久化一直都是需要我们非常关心的问题,docker如此,K8s也不例外。在k8s中,有一个数据卷的概念。k8s数据卷主要解决了以下两方面问题:数据持久性:通常情况下,容器运行起来后,写入到其文件系统的文件时暂时性的。当容器崩溃后,kebelet将这个容器kill掉,然后生成一个新的容器,此时,新运行的容器将没有原来容器内的文件,因为容器是重新从镜像创建的。数据共享:同一个pod中运行的容器之
分类:
其他好文 时间:
2020-09-17 20:38:49
阅读次数:
30
@media screen and (orientation: portrait) { html{ width : 100vmin; height : 100vmax; } body{ width : 100vmin; height : 100vmax; } #gyroContain{ width ...
分类:
Web程序 时间:
2020-09-17 19:51:58
阅读次数:
61
1、非列表的动画 将需要进行动画的元素用transition 包裹起来 在style里进行动画设置 进入的时候动画:v-enter{//动画的开始 transform:...}、v-enter-active{ //动画的过渡transition:...}、v-active-to{// 动画的结束tr ...
分类:
其他好文 时间:
2020-09-17 19:04:29
阅读次数:
30
网格板子~~~ <template> <div style="width:1000px; height:800px"> <p>网格布局</p> <div ref="myBody" id="canvas-frame" style="width:1000px; height:800px"/> </div ...
分类:
Web程序 时间:
2020-09-17 12:36:09
阅读次数:
35