js的语句数量也影响所执行的操作速度。完成多个操作的单个语句要比完成单个操作的多个语句要快。简写这方方面面的我可以给你几条建议。 1.多个变量声明 var count = 5; var color = 'blue'; var now = new Date(); 可以简写为 var count = 5 ...
分类:
其他好文 时间:
2020-03-22 13:36:59
阅读次数:
70
显示效果 显示效果 css代码如下 1 div{ 2 width: 100px; 3 height: 100px; 4 background-color: blue; 5 transition: width 2s,height 2s,transform 2s; 6 -webkit-transitio ...
分类:
Web程序 时间:
2020-03-21 15:08:54
阅读次数:
75
1 from turtle import* 2 n=eval(input()) 3 a=3 4 color("blue","yellow") 5 begin_fill() 6 for i in range(n-2): 7 circle(50,steps=a) 8 fd(50) 9 a=a+1 10 ...
分类:
其他好文 时间:
2020-03-17 19:14:32
阅读次数:
65
1.数据中添加或者删除指定元素 var arr=['red','yello','blue']; arr.push('green'); //添加元素 arr = $.grep(arr,function(v){ return v != 'yellow'; }) ; //移出值为“yellow”的元素 2 ...
分类:
Web程序 时间:
2020-03-16 14:52:40
阅读次数:
68
類似 BoxDecoration ShapeDecoration( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(4) ), shadows: [ BoxShadow( color: Colors.blue, b ...
分类:
其他好文 时间:
2020-03-16 13:06:12
阅读次数:
139
echo 255 > /sys/class/leds/red/brightness echo 0 > /sys/class/leds/green/brightness echo 0 > /sys/class/leds/blue/brightness while true do sleep 1 ech ...
分类:
其他好文 时间:
2020-03-15 22:13:37
阅读次数:
124
import turtle turtle.pencolor("blue") #绘制外部大三角形 turtle.fd(200) turtle.seth(120) turtle.fd(200) turtle.seth(-120) turtle.fd(200) #绘制内部小三角形 turtle.seth( ...
分类:
其他好文 时间:
2020-03-15 15:11:50
阅读次数:
76
local LoadingView = class("LoadingView",BaseUI) --需要加载的plist文件 local PLIST_FILE = { "unit/base/unit23_dead" , "unit/blue/blue_unit23_dead" , "unit/gre ...
分类:
其他好文 时间:
2020-03-10 14:18:44
阅读次数:
65
[Toc] concat 1.创建当前数组的副本。2.将接收到的参数添加到这个副本的末尾。3.返回构建的新数组。 concat不影响原数组。 var colors=["red","green","blue"]; var colors2=colors.concat("yellow",["black", ...
分类:
Web程序 时间:
2020-03-07 12:42:23
阅读次数:
78
Given an array of balls, where the color of the balls can only be Red, Green or Blue, sort the balls such that all the Red balls are grouped on the le ...
分类:
其他好文 时间:
2020-03-04 09:17:30
阅读次数:
83