jQuery Mobile panel width

后端 未结 7 1100
梦如初夏
梦如初夏 2020-12-30 09:53

In the new jQuery mobile there is a new panel option. I have implemented this and it works, but I would like to customize the width of the panel. The standard width is 272px

7条回答
  •  悲哀的现实
    2020-12-30 10:34

    you need to put the following css (left panel)

    .ui-panel{
        width: 150px!important;
    }
    
    .ui-panel-animate.ui-panel-page-content-position-left {
    
        transform: translate3d(150px,0,0) !important;
    }
    

提交回复
热议问题