选项卡面板的 CSS

发布于 2024-12-17 16:23:09 字数 246 浏览 1 评论 0原文

我想要像 这张图片 这样的选项卡面板

我想在 ASP.NET 上实现相同的功能选项卡面板。但是,如果我获得 CSS,我将使其与 ASP.NET 选项卡兼容。

任何人都可以指导我如何做到这一点,或者教程参考。因为我不知道这个选项卡面板 CSS 叫什么。

I want to have Tab panel like this picture

I want to implement the same on ASP.NET tab panel. However, if I get the CSS I would make it compatible to ASP.NET tab.

Can anyone please guide me how to do that, or tutorial reference. Because I don't know that what this tab panel CSS known as.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抱猫软卧 2024-12-24 16:23:09

不确定我完全理解你想要什么(我不懂 ASP)。

但据我了解,您可以使用 jQuery UI 选项卡 并自定义其 CSS。

示例:

HTML

<div id="tabs">
    <ul>
        <li><a href="#tabs-1">Nunc tincidunt</a></li>
        <li><a href="#tabs-2">Proin dolor</a></li>
        <li><a href="#tabs-3">Aenean lacinia</a></li>
    </ul>
    <div id="tabs-1">
        <p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus.</p>
    </div>
    <div id="tabs-2">
        <p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc.</p>
    </div>
    <div id="tabs-3">
        <p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti.</p>
    </div>
</div>

jQuery:

$(function() {
    $( "#tabs" ).tabs();
});

Not sure I understand completely what you want (I don't know ASP).

But from what I understand, you can use jQuery UI tabs and customize its CSS.

Example:

HTML

<div id="tabs">
    <ul>
        <li><a href="#tabs-1">Nunc tincidunt</a></li>
        <li><a href="#tabs-2">Proin dolor</a></li>
        <li><a href="#tabs-3">Aenean lacinia</a></li>
    </ul>
    <div id="tabs-1">
        <p>Proin elit arcu, rutrum commodo, vehicula tempus, commodo a, risus.</p>
    </div>
    <div id="tabs-2">
        <p>Morbi tincidunt, dui sit amet facilisis feugiat, odio metus gravida ante, ut pharetra massa metus id nunc.</p>
    </div>
    <div id="tabs-3">
        <p>Mauris eleifend est et turpis. Duis id erat. Suspendisse potenti.</p>
    </div>
</div>

jQuery:

$(function() {
    $( "#tabs" ).tabs();
});
对不⑦ 2024-12-24 16:23:09

它们实施起来很棘手。仅从 CSS 的角度来看,您需要将 tab 实现为

  • 元素。示例

    <前><代码>

      ;

    • tab1
    • tab2
    • ...

    设计的其余部分只是 CSS。由于您有三角形选项卡,因此您将需要背景图像。

  • They are tricky to implement. Speaking only from CSS point of view, you will need to implement tab as

  • elements. Example

    <ul>
    <li>tab1<li>
    <li>tab2</li>
    ...
    </ul>
    

    The rest of the design is just CSS. Since you have tringular tabs,so you will need background images.

  • ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文