首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    bootstrap 折叠面板 常用样式

    Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo.
    Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo.
    Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo.

    03

    JTabbedPane(3)

    /* * TabbedPaneDemo.java requires one additional file: *   p_w_picpaths/middle.gif. */ import javax.swing.JTabbedPane; import javax.swing.ImageIcon; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JFrame; import javax.swing.JComponent; import javax.swing.SwingUtilities; import javax.swing.UIManager; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.GridLayout; import java.awt.event.KeyEvent; import javax.swing.JButton; public class TabbedPaneDemo extends JPanel {     public TabbedPaneDemo() {         super(new GridLayout(1, 1)); //        super(); JTabbedPane tabbedPane = new JTabbedPane();         ImageIcon icon = createImageIcon("p_w_picpaths/middle.gif");         JComponent panel1 = makeTextPanel("Panel #1","标签1");//增加一个选项卡         tabbedPane.addTab("Tab 1", icon, panel1,                 "Does nothing");         tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);         JComponent panel2 = makeTextPanel("Panel #2","标签2");         tabbedPane.addTab("Tab 2", icon, panel2,                 "Does twice as much nothing");         tabbedPane.setMnemonicAt(1, KeyEvent.VK_2);         JComponent panel3 = makeTextPanel("Panel #3","标签3");         tabbedPane.addTab("Tab 3", icon, panel3,                 "Still does nothing");         tabbedPane.setMnemonicAt(2, KeyEvent.VK_3);         JComponent panel4 = makeTextPanel(                 "Panel #4 (has a preferred size of 410 x 50).","标签4");         panel4.setPreferredSize(new Dimension(410, 50));         tabbedPane.addTab("Tab 4", icon, panel4,                 "Does nothing at all");         tabbedPane.setMnemonicAt(3, KeyEvent.VK_4);         JComponent panel5 = makeTextPanel("Panel #5","标签5");         panel5.setPreferredSize(new Dimension(410,50));         tabbedPane.addTab("标签5", icon,panel5,"测试用标签");         //Add the tabbed pane to this panel.         add(tabbedPane);         //The following line enables to use scrolling tabs.         tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);     }     protected JCom

    01

    bootstrap collapse

    <!doctype html> <html> <head> <meta charset="utf-8"> <title>联想控股</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="css/bootstrap.css" rel="stylesheet" type="text/css"> <script src="http://code.jquery.com/jquery.js"></script> <script src="js/bootstrap.js"></script> </head> <body>

    Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo.
    Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo.
    Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo.
    </body> </html>

    01
    领券