在这里我有一些CSS:
#image-edges-beneath:hover{
background-color: blue;
}
#image-edges:hover{
background-color: blue;
}
#image-edges-beneat:hover:after{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
border: 2px solid #F1FD6D;
}
#image-edges:hover:after{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
border: 2px solid #F1FD6D;
}
然而,这是行不通的。 其发生的唯一的事情是,背景颜色有变,而我希望它只是改变悬停,而边框我希望有一个过渡,所以基本上边框消失在颜色,而背景颜色在悬停立即改变颜色。 这就是我想要完成的任务,但是这是行不通的。 :(任何想法的用户?