import { createMachine, assign, interpret } from "xstate"; const elBox = document.querySelector("#box"); const elBody = document.body; const assignPoi ...
分类:
其他好文 时间:
2020-07-29 21:41:14
阅读次数:
60
::-webkit-scrollbar { width: 4px; } ::-webkit-scrollbar-thumb { -webkit-box-shadow: inset 0 0 1px rgba(136, 136, 136, 0.3); background-color: rgb(238, ...
分类:
Web程序 时间:
2020-07-29 14:58:02
阅读次数:
76
在一个声明中设置所有背景属性: background: #00FF00 url(bgimage.gif) no-repeat fixed top; 属性: background-color规定要使用的背景颜色。例:background-color:red; background-position规定 ...
分类:
Web程序 时间:
2020-07-29 14:34:05
阅读次数:
379
flex 布局 Flex :Flexible box 弹性布局,用来为盒装模型提供最大的灵活性。任何的容器都可以指定为Flex布局 .box{ diaplay:flex; ] 行内元素可以使用flex布局 .box{ display:inline-flex } 传统的布局时基于盒装模型 https: ...
分类:
其他好文 时间:
2020-07-29 14:33:40
阅读次数:
63
http://bl.ocks.org/enjalot/1829187 index.html# <html> <meta charset='utf-8' /> <head> </head> <body> <svg> <text id='text_node' y="20px" text-anchor=" ...
分类:
移动开发 时间:
2020-07-29 10:27:04
阅读次数:
87
通过修改ifcfg-eno16777728配置文件来修改配置ip 网卡命令格式:eno16777728 en:代表enthernet(以太网) o:代表onboard(内置) 16777728:是主板的某种索引编号自动生成的,保证其唯一性 [root@localhost ~]# vim /etc/s ...
分类:
其他好文 时间:
2020-07-29 10:02:22
阅读次数:
67
效果图: 1.XAML部分 <Window x:Class="WpfApp3.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft ...
分类:
其他好文 时间:
2020-07-29 00:46:25
阅读次数:
110
1. 显示系统中全部Android平台: android list targets2. 显示系统中全部AVD(模拟器): 启动制定模拟器:emulator -avd 模拟器名字 android list avds 3. 创建AVD(模拟器): android create avd --name 名称 ...
分类:
数据库 时间:
2020-07-28 22:13:42
阅读次数:
85
今天在重构网页特效的时候,想着用到一个css3的旋转特效。简单来一个demo。 html <div class="box"> <img src="./yft.png" alt="" class="rotation"> </div> css <style> @-webkit-keyframes rot ...
分类:
Web程序 时间:
2020-07-28 14:44:30
阅读次数:
164
1. 块设备(block devices):块设备是一个能存储固定大小块信息的设备,它支持以固定大小的块,扇区或群集读取和(可选)写入数据。每个块都有自己的物理地址。通常块的大小在 512 - 65536 之间。所有传输的信息都会以连续的块为单位。块设备的基本特征是每个块都较为对立,能够独立的进行读 ...
分类:
其他好文 时间:
2020-07-28 00:12:59
阅读次数:
99