认真阅读下列代码,并按要求进行作答。imation-name:mymove; /*定义动画名称*/imation-duration:5s; /*定义动画时间*/imation-timing-function:linear; /*定义动画速度曲线*/imation-delay:2s; /*定义动延迟时间*/imation-iteration-count:3; /*定义动画的播放次数*/imation-direction:alternate; /*定义动画播放的方向*/imation属性是一个复合属性,可以同时设置上述属性的代码为( )。
A: animation: mymove 3 2s linear 5s alternate;
B: animation: mymove linear 2s 5s 3 alternate;
C: animation: mymove 2s linear 5s 3 alternate;
D: animation: mymove 5s linear 2s 3 alternate;
A: animation: mymove 3 2s linear 5s alternate;
B: animation: mymove linear 2s 5s 3 alternate;
C: animation: mymove 2s linear 5s 3 alternate;
D: animation: mymove 5s linear 2s 3 alternate;
D
举一反三
- 认真阅读下列代码,并按要求进行作答。 animation-name:mymove; /*定义动画名称*/ animation-duration:5s; /*定义动画时间*/ animation-timing-function:linear; /*定义动画速度曲线*/ animation-delay:2s; /*定义动延迟时间*/ animation-iteration-count:3; /*定义动画的播放次数*/ animation-direction:alternate; /*定义动画播放的方向*/ animation属性是一个复合属性,可以同时设置上述属性的代码为?
- 设置过渡效果,元素的宽度在5秒内由100px匀速变化到200px,延迟时间为2秒钟,则transition 属性设置正确的是( )。 A: transition:width 2s linear 5s B: transition:2s width 5s linear C: transition:width 5s linear 2s D: transition:5s width 2s linear
- 【单选题】曲线 r(s)={cos(√2s/2),sin(√2s/2),√2s/2} 在s=0 的近似曲线为 (2.0分) A. R(s)={s,s^2/2,s^3/6} B. R(s)={s,s^2/4,s^3/24} C. R(s)={s,s^2/3,s^3/6} D. R(s)={s,s^2/3,s^3/24}
- 样式表animation属性中,那个属性值可以无限循环播放实现此功能()。 A: forwards B: infinite C: alternate D: linear
- 39号元素钇的核外电子排布式是下列排布中的( ) A: 1 s 2 2 s 2 2 p 6 3 s 2 3 p 6 3 d 10 4 s 2 4 p 6 4 d 1 5 s 2 B: 1 s 2 2 s 2 2 p 6 3 s 2 3 p 6 3 d 10 4 s 2 4 p 6 5 s 2 5 p 1 C: 1 s 2 2 s 2 2 p 6 3 s 2 3 p 6 3 d 10 4 s 2 4 p 6 4 d 2 5 s 1 D: 1 s 2 2 s 2 2 p 6 3 s 2 3 p 6 3 d 10 4 s 2 4 p 6 5 s 2 5 p 1
内容
- 0
写出下列程序的运行结果 s='abcdefg' print(s[3]) print(s[3:5]) print(s[:5]) print(s[3:]) print(s[::2]) print(s[::-1]) print(s[-2:-5])
- 1
animation: mycolor 5s linear; 关于这条语句叙述错误的是
- 2
发动机在正常工作温度下,().内能起动。 A: 2s B: 5s C: 10 s D: 15 s
- 3
设s='abcdefg',则s[3]的值是__________,s[3:5]的值是__________,s[:5]的值是__________,s[3:]的值是__________,s[::2]的值是__________,s[::-1]的值是__________ ,s[-2:-5]的值是__________。
- 4
下列选项中,用于定义动画效果需要播放3次的代码是( )。 A: animation:3; B: animation-timing-function:3; C: animation-delay:3; D: animation-iteration-count:3;