创建一个没有背景的圆,然后声明透明度为0.1的黑色边框(看起来是灰色),修改左侧边框颜色。此时会有一个静态的看起来只有左边框有颜色的空心圆。然后声明一个该元素逆时针旋转360度的动画,并让该动画无限播放(infinite)即可。 使用的css3 特性: transform属性的 rotate,共一个 ...
分类:
Web程序 时间:
2020-07-18 00:31:25
阅读次数:
112
1,localStorage 存储数据支持5M大小,只有不清除历史记录,数据就在 var data = { left: 0, top: 0, scale: 1, rotate: 0 }; // localStorage本地存储 window.localStorage.cat_touchjs_data ...
分类:
其他好文 时间:
2020-07-16 18:08:47
阅读次数:
66
MapReduce: Simplified Data Processing on Large Clusters MapReduce是什么? a programming model and an associated implementation for processing and generati ...
分类:
其他好文 时间:
2020-07-16 10:13:57
阅读次数:
73
Netbeans 8.2 tomcat8 java8 也就是缺jstl的依赖呗 去maven搜一下jstl 随便试一下,选个用的人多的 然后再选择版本最新的 把依赖加入到pom.xml中,使用依赖关系重新构建,问题解决 <!-- https://mvnrepository.com/artifact/ ...
分类:
编程语言 时间:
2020-07-16 10:11:21
阅读次数:
96
Given an array, rotate the array to the right by k steps, where k is non-negative. Follow up: Try to come up as many solutions as you can, there are a ...
分类:
其他好文 时间:
2020-07-16 00:20:51
阅读次数:
49
背景 众所周知,Unity3D支持自定义后处理效果,实现过程有三步: 添加着色器,在着色器里书写后处理代码; 添加材质,把材质和着色器绑定; 给相机添加脚本,重写其OnRenderImage方法,将材质传入Graphics.Blit方法中。 但是在做最近的一个项目时,我使用了Unity3D的官方后处 ...
分类:
编程语言 时间:
2020-07-14 16:39:31
阅读次数:
79
SOC-系统级芯片-System On Chip-片上系统 两部分构成 a dual-core ARM® Cortex®-A9 processor 双核ARM处理器 (称为PS - Processing System) FPGA fabric FPGA架构 (成为PL - Programmable ...
分类:
其他好文 时间:
2020-07-14 16:23:25
阅读次数:
97
1.欧拉角旋转 public void Rotate(Vector3 eulers, [DefaultValue("Space.Self")] Space relativeTo); 就容易想到的就是transform.Rotate方法: 1 RotationObj.transform.Rotate( ...
分类:
编程语言 时间:
2020-07-13 21:43:11
阅读次数:
104
Rotate List (M) 题目 Given a linked list, rotate the list to the right by k places, where k is non-negative. Example 1: Input: 1->2->3->4->5->NULL, k = ...
分类:
其他好文 时间:
2020-07-11 09:40:09
阅读次数:
39
首先说一下我对这个方案的看法,相比第一名与第二名的方案,这个方案的分割方法确实复杂的多,原论文是发表在MICCAI,后来砖投到IEEE image processing(SCI 1区),总体感觉给人一种花里胡哨的感觉,但是看分割结果,却着实让人满意。以下将解析此论文。 摘要 肿瘤分割的一个主要难点就 ...
分类:
Web程序 时间:
2020-07-08 19:44:44
阅读次数:
76