最赞回答 / 爱上慕婉清6262634
transition-delay是延迟时间,transition-duration是持续时间,比如说你设置持续时间5秒,延迟时间是10秒,那么当鼠标覆盖之后,经过10秒动画开始播放,宽度由200px变400px,5秒后变化结束。这个过程鼠标不可移出,否则hover事件终止
position:absolute;
top:50%;
left:50%;
使得div左上角位于窗口正中间。
translate(-50%,-50%)使div向左向上方向移动div自己width、height的50%,所以div中心位于窗口中心位置,即实现了居中。
top:50%;
left:50%;
使得div左上角位于窗口正中间。
translate(-50%,-50%)使div向左向上方向移动div自己width、height的50%,所以div中心位于窗口中心位置,即实现了居中。
2016-12-25
我来公布答案:
任务1 li:nth-of-type(1)到 li:nth-of-type(5)
任务2 li:nth-of-type(n)>a::after
任务3 li:nth-of-type(1)>a::after到 li:nth-of-type(5)>a::after
任务4 li:nth-of-type(n)>a::before
任务5 li:nth-of-type(n)>a:hover::before
任务6 #bg1:target到#bg5:target
任务7 :not(:target)
赞我吧~
任务1 li:nth-of-type(1)到 li:nth-of-type(5)
任务2 li:nth-of-type(n)>a::after
任务3 li:nth-of-type(1)>a::after到 li:nth-of-type(5)>a::after
任务4 li:nth-of-type(n)>a::before
任务5 li:nth-of-type(n)>a:hover::before
任务6 #bg1:target到#bg5:target
任务7 :not(:target)
赞我吧~
2016-12-25
已采纳回答 / JohnieXu
如果知道盒子的大小(width、height)采用绝对定位只需要x、y方向各一个定位就可以了,此处不知道盒子的大小(width和height),通过top:50%;bottom:0;left:10px; right:10px的绝对定位就知道了盒子的大小。<...图片...>
2016-12-23
/*任务二、设置缩略图形状*/
.slider li a::after
*任务三、设置缩略图背景图像*/
.slider li:nth-of-type(1) a::after
/*任务四、给缩略图添加蒙板效果*/
.slider li a::before
/*任务五、鼠标悬浮时,修改缩略图蒙板透明度*/
.slider li a:hover::before
.slider li a::after
*任务三、设置缩略图背景图像*/
.slider li:nth-of-type(1) a::after
/*任务四、给缩略图添加蒙板效果*/
.slider li a::before
/*任务五、鼠标悬浮时,修改缩略图蒙板透明度*/
.slider li a:hover::before
2016-12-23
/*任务一、设置不同列表的背景色*/
.slider li:nth-of-type(1)
.slider li:nth-of-type(2)
.slider li:nth-of-type(3)
.slider li:nth-of-type(4)
.slider li:nth-of-type(5)
.slider li:nth-of-type(1)
.slider li:nth-of-type(2)
.slider li:nth-of-type(3)
.slider li:nth-of-type(4)
.slider li:nth-of-type(5)
2016-12-23
最赞回答 / chage0527
一下是我认为代码中出现的几个问题:1、 .itemimg 中间少了空格 .item img2、 CSS代码中文注释没用/**/3、 .item .information 的 background并没有少a4、 第21行的h1,em,#information,不是.information,而是多余了“,em,#information”,删除即可5、HTML中没有a标签,删除即可6、任务一的背景图像链接失效,我换成了6-7节切换背景图的那一届的背景http://www.w3cplus.com/demo/cs...
2016-12-23
已采纳回答 / qq_自强不息_8
backwards不是决定最终样式的,它表示元素应用动画时是否立即应用动画的初始帧,forwards表示动画执行完后停止在最后一帧的位置,最后一帧是什么样式,结果就是什么样式,明白?
2016-12-23