Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/83.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 超简单CSS3变换动画后的文本模糊_Html_Css_Css Transforms - Fatal编程技术网

Html 超简单CSS3变换动画后的文本模糊

Html 超简单CSS3变换动画后的文本模糊,html,css,css-transforms,Html,Css,Css Transforms,虽然很简单,但我无法让这个动画正常工作 我在悬停div时设置的动画是: transform3d(0,Xem,0) 边界 高度 所以,没什么特别的。但当我在Chrome中打开它时,我得到了一个非常糟糕的悬停动画 最糟糕的是,3d变换使我的文本变得模糊。为什么?没有缩放或任何3D效果 在浏览器中查看: 我错过什么了吗?这似乎是一个相当简单的动画 悬停前俯冲 div悬停(文本模糊) CSS代码(SASS)基本上是: .disciplines-wrapper > div { color:

虽然很简单,但我无法让这个动画正常工作

我在悬停div时设置的动画是:

  • transform3d(0,Xem,0)
  • 边界
  • 高度
所以,没什么特别的。但当我在Chrome中打开它时,我得到了一个非常糟糕的悬停动画

最糟糕的是,3d变换使我的文本变得模糊。为什么?没有缩放或任何3D效果

在浏览器中查看:

我错过什么了吗?这似乎是一个相当简单的动画

悬停前俯冲

div悬停(文本模糊)

CSS代码(SASS)基本上是:

.disciplines-wrapper > div {
color: white;
padding: 0;
width: 33%;
margin-right: .5%;
margin-top: 320px;
height: 12em;
height: 8.375em;
cursor: pointer;
position: relative;


.wrap {
    height: 8.375em;
    position: absolute;
    transition: transform 0.2s ease-out, height 0.2s ease-out, border 0.2s ease-out;
    border: 1px solid white;
    overflow: hidden;
    backface-visibility: hidden;


    &:hover {
        transform: translate3d(0, -3.475em, 0);
        height: 11.875em;
        border: 1px solid $lightblue;
        background: $lightblue;

    }
}
}
HTML文件

<div class="disciplines-wrapper">

            <div class="col-1-3">

                    <div class="wrap">
                        <div class="disciplines-text-wrapper">
                            <h1>
                                Kreation
                            </h1>
                            <p>Effektive Werbung entsteht durch das optimale Zusammenspiel aller Kreativen. </p>
                        </div>
                        <a href="#"><i class="icon-right-circled"></i>Weitere Informationen</a>
                    </div>

            </div>
            <div class="col-1-3">
                    <div class="wrap">
                        <div class="disciplines-text-wrapper">
                            <h1>
                                Druck
                            </h1>
                            <p>Kernkompetenz von Prinovis ist der Druck. Schnell, hochwertig und flexibel.</p>

                        </div>
                        <a href="#"><i class="icon-right-circled"></i>Weitere Informationen</a>
                    </div>
            </div>
            <div class="col-1-3">
                <div class="wrap">
                    <div class="disciplines-text-wrapper">
                        <h1>
                            Weiterverarbeitung
                        </h1>
                        <p>Nach dem Druck ist vor der Verarbeitung: Sammelheftung oder Klebebindung</p>

                    </div>
                    <a href="#"><i class="icon-right-circled"></i>Weitere Informationen</a>
                </div>
            </div>

    </div>  

克瑞翁
最有效的方法是将其作为最佳选择

德鲁克 普里诺维斯是德鲁克家族的成员。施奈尔,霍奇沃蒂格和弗利克斯贝尔

韦特韦拉尔贝通 德鲁克是一个普通人:他是一个普通人


请参见,您可能已经解决了这个问题,但对我来说,文本似乎相当整洁。我正在使用Chrome 43.0.2357.132,如果这对您有帮助的话@伊舍伍德:这一切似乎都不起作用,这就是为什么我创建了一个新的post@Bladepianist非常感谢。你用的是什么操作系统?啊,是的,我可能早就说过了。我用的是Win'XP电脑。我的手机上也没有模糊的文字,最新版本的Chrome浏览器和安卓棒棒糖浏览器都没有。Firefox 35.0.1也很好。看,你可能已经解决了这个问题,但对我来说,文本看起来很整洁。我正在使用Chrome 43.0.2357.132,如果这对您有帮助的话@伊舍伍德:这一切似乎都不起作用,这就是为什么我创建了一个新的post@Bladepianist非常感谢。你用的是什么操作系统?啊,是的,我可能早就说过了。我用的是Win'XP电脑。我的手机上也没有模糊的文字,最新版本的Chrome浏览器和安卓棒棒糖浏览器都没有。Firefox35.0.1也很好。