开发者 | mlchaves |
---|---|
更新时间 | 2022年12月18日 15:42 |
捐献地址: | 去捐款 |
PHP版本: | 7.2 及以上 |
WordPress版本: | 6.1.1 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
/wp-content/plugins/hide-and-seek-header
directory, or install the plugin through the WordPress plugins screen directly.Version 1.0.1 was built for Avada. It hasn't been tested with other themes. Please fork a copy and change it to work for other themes, if wanted.
Yes. You can write custom CSS to override the media query for the .hideandseek-hide-down
class.
Yes. You can write custom CSS to override the animation style and timing in the .hideandseek-hide-down
class.
Below is the CSS it would take to increase the animation duration and responsive breakpoint at the same time.
`
/ Custom disable for devices smaller than 1024px. /
@media screen and (max-width: 1023.998px) {
.hideandseek-hide-down {
visibility: visible !important;
opacity: 1 !important;
transition: none !important;
}
}
/ Custom fade increase to 5.5 seconds. /
@media screen and (min-width: 1024px) {
.hideandseek-hide-down {
visibility: hidden;
opacity: 0;
transition: visibility 5.5s, opacity 5.5s linear !important;
}
}
`