最新回答 / 慕粉3160836
(回复不能超过300字,只能放这了)你试试这个链接~http://jsbin.com/cufadet/edit?html,css,output我3个浏览器都试了,把border样式的注释去掉,3个浏览器效果一样,加上注释的话,ff和ie上border就没效果了。如果链接打不开的话,下面是代码<!DOCTYPE html><html> <head> <meta charset="utf-8"> <style type="text/css"&...
2016-06-08
这一段话“另外如果暂停了动画的播放,元素的样式将回到最原始设置状态。”
参考问答里其他小伙伴的回复,我这样理解对不对:
用animation-play-state:paused;暂停的动画,保持暂停时的状态,
意外中止的动画,比如改变元素的animation-name换动画,元素就会回到原始状态。
参考问答里其他小伙伴的回复,我这样理解对不对:
用animation-play-state:paused;暂停的动画,保持暂停时的状态,
意外中止的动画,比如改变元素的animation-name换动画,元素就会回到原始状态。
2016-06-08
animation-name 规定需要绑定到选择器的 keyframe 名称。。
animation-duration 规定完成动画所花费的时间,以秒或毫秒计。
animation-timing-function 规定动画的速度曲线。
animation-duration 规定完成动画所花费的时间,以秒或毫秒计。
animation-timing-function 规定动画的速度曲线。
2016-06-07
background:url(http://static.mukewang.com/static/img/logo_index.png) no-repeat left top/200px 80px,
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/150px 50px;
url(http://static.mukewang.com/static/img/logo_index.png) no-repeat right bottom/150px 50px;
2016-06-06
a[class^="column"]{
background:red;
}
a[href$="doc"]{
background:green;
}
a[title*="box"]{
background:blue;
}
background:red;
}
a[href$="doc"]{
background:green;
}
a[title*="box"]{
background:blue;
}
2016-06-06
已采纳回答 / 独爱你Single
首先有两个渐变。background-position:第一个值是水平位置,第二个值是垂直位置。第一个渐变background-position:0 0;第二个渐变background-position:30px 30px
2016-06-06
最赞回答 / Just90
楼上的慕友对表达式的理解说得很对了。这里补充一点思考的方向,对于后面区别nth-child与nth-of-type,last-child与last-of-type,first-child与first-of-type有帮助!这里分析nth-child与nth-of-type,这样对于last-chil...
2016-06-06
任务三 设置3D舞台布景
-webkit-perspective: 200px;
-moz-perspective: 200px;
-ms-perspective: 200px;
-o-perspective: 200px;
perspective: 200px;
-webkit-perspective: 200px;
-moz-perspective: 200px;
-ms-perspective: 200px;
-o-perspective: 200px;
perspective: 200px;
2016-06-06