我正在使用 jQuery Mobile 创建一个应用程序。我想显示全屏按钮图像。按照计划,点击后,它应该转到某个页面。我创建了一个按钮并替换了我的自定义图像。但我无法将其拉伸到全屏。
请帮助我如何去做。
这是我的代码
CSS
.button{
width:100%;
background-image: url('home1.png') !important;
background-repeat: no-repeat;
background-size: cover;
}
HTML
<div data-role="content" id="content" >
<a href="#button1" class="button" data-role="button" data-inline="false">button1</a>
</div>