transform transform : none | <transform-function> [ <transform-function> ]* 也就是: transform: rotate | scale | skew | translate |matrix;注意:transform(变形) ...
分类:
其他好文 时间:
2019-11-27 11:54:49
阅读次数:
59
1. [root@localhost ~]# 的含义 ? 【登录的用户 机器的名称 家目录】 2. 查看当前光标所在的目录 pwd [root@localhost ~]# pwd /root 3. 切换目录 cd [root@localhost ~]# cd /home [root@localhos ...
分类:
系统相关 时间:
2019-11-22 00:45:22
阅读次数:
87
Python Dictionaries Python Dictionaries are unordered collections of arbitrary objects built in mutable mapping that maps keys to values in dictionari ...
分类:
编程语言 时间:
2019-11-18 20:08:42
阅读次数:
81
.NET Core3.0开发Liunx桌面应用程序主要是依靠GTK。 什么是GTK? GTK+(GIMP Toolkit)是一套源码以LGPL许可协议分发、跨平台的图形工具包。最初是为GIMP写的,已成为一个功能强大、设计灵活的一个通用图形库,是GNU/Linux下开发图形界面的应用程序的主流开发工 ...
分类:
Web程序 时间:
2019-11-17 12:45:14
阅读次数:
366
383. Ransom Note Easy Easy Easy Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function t ...
分类:
其他好文 时间:
2019-11-15 10:44:24
阅读次数:
79
1 Vector Rotate(Vector A, double rad) { 2 return Vector(A.x * cos(rad) - A.y * sin(rad), A.x * sin(rad) + A.y * cos(rad)); 3 } 4 double angle(Vector v ...
分类:
其他好文 时间:
2019-11-12 18:37:18
阅读次数:
81
1.360度一直旋转动画 <img class="rotate" src="../circle.png"/> .rotate { transform: rotate(360deg); animation: rotation 3s linear infinite; -moz-animation: ro ...
分类:
其他好文 时间:
2019-11-12 11:13:20
阅读次数:
94
Gtksharp编译时提示下载gtk文件问题 1、昨天晚上新建gtksharp项目之后,安装gtksharp之后,编译时无法成功,提示无法下载gtk 3.24.zip 2、记得前几天,另一个项目可以生成的。就打开老项目、运行、编译成功。那会不会是今天写的代码导致的,注释之后编译还是失败。没办法重新新 ...
分类:
其他好文 时间:
2019-11-09 22:06:21
阅读次数:
85
环境 我使用的是新安装的manjaro 18.1 (kde版),安装新系统后后直接可以开始写代码,不需要安装各种调用的库等。 推荐一个网站,gnome开发者 https://developer.gnome.org/ c语言开发者的起步,安装一些推荐的工具软件 https://developer.gn ...
分类:
其他好文 时间:
2019-11-09 19:56:13
阅读次数:
96
gcc `pkg-config --cflags gtk+-3.0` -o example-1 example-1.c `pkg-config --libs gtk+-3.0` ...
分类:
编程语言 时间:
2019-11-09 09:17:09
阅读次数:
96