css 提供固定(粘性)标题和主要导航栏 - 由Junior Atoms提供:http://cobaltapps.club/forum/main-category/web-design-talk/47

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 提供固定(粘性)标题和主要导航栏 - 由Junior Atoms提供:http://cobaltapps.club/forum/main-category/web-design-talk/47相关的知识,希望对你有一定的参考价值。

//* Open dynamik-sticker div
add_action( 'genesis_before_header', 'dynamik_open_sticker', 2 );
function dynamik_open_sticker() {
    
    echo '<div class="dynamik-sticker">';

}

//* Close dynamik-sticker div
add_action( 'genesis_after_header', 'dynamik_close_sticker' );
function dynamik_close_sticker() {
    
    echo '</div>';

}
/* Dynamik Sticker */

body {
    padding-top: 150px; /* Equal to header plus nav heights. */
}

.dynamik-sticker {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.admin-bar .dynamik-sticker {
    top: 32px;
}

/* Hide Tagline

.site-description {
    line-height: 0;
    margin: 0;
    padding: 0;
    text-indent: -9999px;
}

*/

/* Media Queries */

@media only screen and (max-width: 1140px) {
    
    body {
        padding-top: 200px; /* Equal to header plus nav heights. */
    }
    
}

@media only screen and (max-width: 782px) {

    .admin-bar .dynamik-sticker {
        top: 46px;
    }
    
}

@media only screen and (max-width: 600px) {

    #wpadminbar {
        position: fixed;
    }

}

以上是关于css 提供固定(粘性)标题和主要导航栏 - 由Junior Atoms提供:http://cobaltapps.club/forum/main-category/web-design-talk/47的主要内容,如果未能解决你的问题,请参考以下文章

标题中的粘性导航栏[关闭]

固定/粘性/浮动顶部菜单导航栏的正确名称 [关闭]

修复屏幕顶部的“粘性”导航栏

CSS粘性定位

在 css jQuery 中应用淡入淡出到粘性导航的过渡淡入淡出

CSS视差标题和粘性导航互斥?