<ul id="6j1wk"><tr id="6j1wk"></tr></ul>

<tbody id="6j1wk"></tbody>
  • Web Design
    Mobile Internet
    Brand Design
    Innovative
    News
    Encyclopedias

    如何讓wordpress主題右下角彈出jquery公告

    Date:2012-02-23 Aource:尚品中國 Type:網站百科
    Word Size:small  medium  big

    北京網站建設公司尚品中國:在HotStyle主題在集成了右下角彈出最新公告的功能,此功能可以通過后臺主題選項輕松開啟關閉,現(xiàn)在就其實現(xiàn)方法做以下描述。

    這一功能的實現(xiàn)非常簡單,其利用jquery的fadeTo或者Hide的功能。

    1,加載jquery.js.

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

    2,加載以下js代碼:

    <script type="text/javascript">   
        $(document).ready(function() {   
            //$('#sitefocus').hide(0, 0);   
            //$('#sitefocus').fadeIn(1800, 0);   
            $('.bm_h a').click(function() {   
                //$('#sitefocus').hide();   
                //$('#sitefocus').fadeTo(500, 0);   
                $('#sitefocus').hide(600, 0);   
                return false;   
            });   
        });   
    </script> 

    3,css格式。

    <style type="text/css">   
    .focus {   
        position:fixed;   
        rightright:5px;   
        bottombottom:5px;   
        z-index:300;   
        overflow:hidden;   
        width:250px;   
        border:1px solid #AAA;   
        padding:0 10px;   
        background:white;   
    }   
    .bm,.bn {   
        margin-bottom:10px;   
    }   
    .bm_h {   
        padding:0 10px;   
        height:40px;   
        border-bottom:4px solid #009AD9;   
        line-height:40px;   
        whitewhite-space:nowrap;   
        overflow:hidden;   
    }   
    .cl {   
        zoom:1;   
    }   
    .y {   
        float:rightright;   
    }   
    a {   
        color:#333;   
        text-decoration:none;   
    }   
    h1,h2,h3,h4,h5,h6 {   
        font-size:1em;   
    }   
    body,ul,ol,li,dl,dd,p,h1,h2,h3,h4,h5,h6,form,fieldset,.pr,.pc {   
        margin:0;   
        padding:0;   
    }   
    .bm_c {   
        background:white;   
    }   
    .bbda {   
        border-bottom:1px dashed #CDCDCD;   
    }   
    .cl {   
        zoom:1;   
    }   
    .xld dt {   
        padding:8px 0 5px;   
        font-weight:700;   
    }   
    .bm_c h2 a,.bm_c dt a {   
        padding-right:10px;   
        color:#4A4E52;   
    }   
    .focus dt a {   
        color:#0060A6;   
        font-size:12px;   
    }   
    .xi2,.xi2 a,.xi3 a {   
        color:#266CB5;   
    }   
    .xld dd {   
        margin-bottom:8px;   
    }   
    .hm {   
        text-align:center;   
    }   
    .ptn {   
        padding-top:5px!important;   
    }   
    a:hover,* a:hover {   
        color:#F60 !important;   
    }   
    </style>

    4,php和html代碼調用最新公告。

    <?php    
         $loop = new WP_Query( array( 'post_type' => 'bulletin', 'posts_per_page' => 1 ) );while ( $loop->have_posts() ) : $loop->the_post();   
    ?>   
    <div class="focus" id="sitefocus">   
        <div class="bm">   
            <div class="bm_h cl">   
                <a href="#" class="y" title="關閉">關閉</a>   
                <h2>臨時公告</h2>   
            </div>   
            <div class="bm_c">   
                <dl class="xld cl bbda">   
                    <dt>   
                        <a href="<?php the_permalink(); ?>" class="xi2" target="_blank">   
                            <?php the_title(); ?>   
                        </a>   
                    </dt>   
                    <dd>   
                        <?php echo mb_strimwidth(strip_tags(apply_filters( 'the_content', $post->   
                            post_content)), 0, 68,"..."); ?>   
                    </dd>   
                </dl>   
                <p class="ptn hm">   
                    <a href="<?php the_permalink(); ?>" class="xi2" target="_blank">查看 »</a>   
                </p>   
            </div>   
        </div>   
    </div>   
    <?php endwhile; ?> 

    這里循環(huán)調用最新公告,由于此公告由主題集成,所以不具有統(tǒng)一性,請根據個人實際需要做修改。

    ?

    Please contact our consultant

    +86 10-60259772

    Please provide your contact number. The project manager of shangpin China will contact you as soon as possible.