操作背景图像径向过渡在镶边中不起作用



我已经用纯粹的 css 创建了一个涟漪效果,它以前在所有浏览器中都运行良好,现在看起来它目前在 chrome 中不起作用,但在其他浏览器中正确运行(不包括 I.E,我不测试那个垃圾)好奇为什么会发生这种情况?我已经用尽了我的资源,关于 chrome 现在发生的事情,它现在可以工作了。

<a href="javascript:void(0)" class="btn-shadow btn-ripple">Button</a>
[class^="btn"],
[class*=" btn"]
    display inline-flex
    font-family 'Roboto', sans-serif
    text-decoration none
    justify-content center
    align-items center
    text-align center
    cursor pointer
    white-space nowrap
    padding 8px 20px
    font-size 14px
    background-color white
    border-radius 2px
    color #434A54
    text-transform uppercase
    border none
    box-shadow 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)
    transition all 0.4s ease-in-out
    background-position 50%
    outline none !important // we don't like outlines, nasty hobbits...
    &:before {
        content: '';
        position: absolute;
        background: red;
    }
    &:not([disabled])
        &.btn-shadow
            &:active
                box-shadow 0 5px 10px rgba(0,0,0,0.19), 0 2px 2px rgba(0,0,0,0.23)
        &.btn-ripple
            transition all 0.4s ease-in-out
            background-size 200%
            &:active
                background-repeat no-repeat
                background-size 1000%
                background-image radial-gradient(circle, rgba(0, 0, 0, .1) 10%, rgba(0, 0, 0, 0) 11%)

在这里看到它发生:http://codepen.io/brycesnyder/pen/gPojeO?editors=1100

谢谢!

你的问题很有趣。

看看Firefox和Chrome,我能够重现你所描述的内容。

阅读W3schools中背景大小的属性文档后想到的最简单的解决方案

您忘记定义新背景大小值的 xy 维度

试试这个:

&.btn-ripple
    transition all 0.4s ease-in-out
    background-size 200% 200%
&:active
    background-repeat no-repeat
    background-size 1000% 1000%

将这些值添加到您附加的代码笔中,我能够在 Chrome 51 中正确查看过渡。

希望这有帮助

相关内容

  • 没有找到相关文章

最新更新