具有不同选项卡式背景图像的选项卡式内容框

时间:2011-05-24 作者:chris_s

我目前正在寻找一种方法来复制下面的图像。我遇到过许多选项卡式内容插件和代码片段,但我不知道如何为每个选项卡添加不同的背景图像。

enter image description here

1 个回复
最合适的回答,由SO网友:kaiser 整理而成

准备您必须在选项卡上使用一些jQuery和jQuery UI。

加载wp_enqueue_script - Codex, How-To.

搜索

In any case: Google for "jQuery Tabs".

标记

标记看起来与此标记很接近。

<!-- These are the tabs -->
<ul class="wpse-tabs">
    <li>
        <a href="#your-target-div-A" title="Your target description A">
            <span class="wpse-tabs-icon smilie-icon"></span>
            A: Some descriptive text
        </a>
    </li>
    <li>
        <a href="#your-target-div-B" title="Your target description B">
            <span class="wpse-tabs-icon stats-icon"></span>
            B: Some descriptive text
        </a>
    </li>
</ul>

<!-- This is your content with wrapper -->
<div class="tab-target-wrapper">
    <div id="your-target-div-A">Your content A</div>
    <div id="your-target-div-B">Your content B</div>
</div>
风格
<style>
/* Assumin you\'re using an image sprite as background. 
In case you don\'t know what that is, ask google */
.wpse-tabs-icon {
    display: block;
    width: 16px;
    height: 16px;
    background: url(\'iconsprite.png\') no-repeat;
}
.smilie-icon {
    background-position: 0px 0px;
}
.stats-icon {
    background-position: 20px 0px;
}
</style>

结束

相关推荐

Shortcode content filter?

我在找东西,但不知道是什么。我有一个短码,我们叫它[短码]。用户将在其中输入HTML标记,主要是图像,但也包括链接、链接中的图像等,例如:[shortcode] <img src=\"http://www.site.com/myimage.jpg\" /> <a href=\"http://www.blabla.com\"><img src=\"http://www.site.com/myimage2.jpg\" /></a> (..