猿问

使用具有梯度背景的CSS 3过渡

使用具有梯度背景的CSS 3过渡

我试图过渡到悬停与CSS在缩略图上,以便在悬停时,背景梯度消失。转换不起作用,但如果我简单地将其更改为rgba()价值,它工作得很好。不支持渐变吗?我也试过使用图像,它也不会转换图像。

我知道这是可能的,就像在另一篇文章中有人这样做,但我不知道到底是怎么做到的。AnyHelp>以下是一些要使用的CSS:

#container div a {
  -webkit-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  transition: background 0.2s linear;
  position: absolute;
  width: 200px;
  height: 150px;
  border: 1px #000 solid;
  margin: 30px;
  z-index: 2}#container div a:hover {
  background: -webkit-gradient(radial, 100 75, 100, 100 75, 0, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .4)))}


红颜莎娜
浏览 370回答 3
3回答
随时随地看视频慕课网APP
我要回答