Home > Article > Web Front-end > How to modify the style of layui framework
How to modify the style of LayUI framework? Modify the CSS file directly: find the CSS selector of the corresponding element and modify the properties and values. Call the layer.use() function from JavaScript code: pass in a callback function and modify the style in it. Use layuiFilter() filters from JavaScript code: pass in a CSS selector and a callback function, and modify the style in the callback function. Modify the theme: Find the "theme" variable in the src/layui.js file and change it to your favorite theme name. Customize the theme: Create a new CSS file containing LayU
How to modify the style of the LayUI frame
Modify the CSS file directly
Through the Layer.use() function
<code class="javascript">layui.use('layer', function(){ layer.open({ title: '修改样式', content: '修改元素样式', success: function(layero, index){ // 修改标题背景色 layero.find('.layui-layer-title').css('background-color', '#f1f1f1'); } }); });</code>
Through the layuiFilter() filter
<code class="javascript">layui.filter('body', function(elem){ elem.css('background-color', '#fff'); });</code>
Modify Theme
Custom Theme
The above is the detailed content of How to modify the style of layui framework. For more information, please follow other related articles on the PHP Chinese website!