分享笔记:

Elementor手机设备关闭鼠标效果

没有鼠标要啥效果

文章目录

Elementor 自带的鼠标效果挺酷炫的,不过它不是 responsive 的。在 Elementor 里,只有旁边有个设备小图标的选项才是响应式的。

取消鼠标效果代码

想要在手机端取消这个效果我们可以使用下面的代码。

@media screen and (max-width:1023px) {
    selector .elementor-motion-effects-element {
        transform: none !important;
    } 
}

这个指的是全部设备宽度低于1023像素的都会取消这个效果。这里要注意,前面有使用有个 “selector”,我们得单独把这个代码插入到一个元素里。

为笔记评分

平均评分 0 / 5. 摘星者: 0

留下第一个评论

更多结果...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

更多结果...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors