Wordpress自定义弹出窗口

时间:2014-11-15 08:56:05

标签: jquery html css wordpress

我在我的wordpress网站上使用自定义pupup但是在localserver上测试弹出窗口工作正常,使用简单的index.html但是当我将它嵌入wordpress header.php中的类似本地服务器时,style.css它不起作用下面是我的代码与展示位置文件

在我的/wordpress/wp-content/themes/parasponsive/header.php

我将我的以下jquery代码放在头部

<script>
$(document).ready(function(){

    $(function(){
        $('span.clickMe').click(function(e){
            var hiddenSection = $('section.hidden');
            hiddenSection.fadeIn()
                // unhide section.hidden
                .css({ 'display':'block' })
                // set to full screen
                .css({ width: $(window).width() + 'px', height: $(window).height() + 'px' })
                .css({ top:($(window).height() - hiddenSection.height())/2 + 'px',
                    left:($(window).width() - hiddenSection.width())/2 + 'px' })
                // greyed out background
                .css({ 'background-color': 'rgba(0,0,0,0.5)' })
                .appendTo('body');
                // console.log($(window).width() + ' - ' + $(window).height());
                $('span.close').click(function(){ $(hiddenSection).fadeOut(); });
        });
    });

});

然后在我的标题结束标记上方的类似标题.php中放置了html

    </section>

<section class="hidden">
    <article class="popup">
        <span class="close">Close Me</span>
        <p>
            This is a test.
        </p>
    </article>
</section>

然后在风格/wordpress/wp-content/themes/parasponsive/style.css

 section.center {
    max-width: 150px;
    margin: 100px auto;
}
span.clickMe {
    font-size: 30px;
}
span.clickMe:hover {
    cursor: pointer;
    color: green;
}
section.hidden {
    display: none;
    position: fixed;
}
section article.popup {
    position: relative;
    width: 400px;
    height: 300px;
    background: #e3e3e3;
    color: #222;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 5px 7px;
    margin: 10% auto;
}
span.close {
    text-transform: uppercase;
    color: #222;
}
span.close:hover{
    color: red;
    cursor: pointer;
}

但它甚至没有被点击是什么问题

1 个答案:

答案 0 :(得分:-1)

试试这个:

    ( function( $ ) {
            $('span.clickMe').click(function(e){
                var hiddenSection = $('section.hidden');
                hiddenSection.fadeIn()
                    // unhide section.hidden
                    .css({ 'display':'block' })
                    // set to full screen
                    .css({ width: $(window).width() + 'px', height: $(window).height() + 'px' })
                    .css({ top:($(window).height() - hiddenSection.height())/2 + 'px',
                        left:($(window).width() - hiddenSection.width())/2 + 'px' })
                    // greyed out background
                    .css({ 'background-color': 'rgba(0,0,0,0.5)' })
                    .appendTo('body');
                    // console.log($(window).width() + ' - ' + $(window).height());
                    $('span.close').click(function(){ $(hiddenSection).fadeOut(); });
            });
        } ) (jQuery);