将图像添加到jquery移动页面,无法阻止其重复。移动设备可以,但在平板电脑或台式机上观看时,重复'谢谢!
是不行的<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery Mobile Web App</title>
<link href="../jquery-mobile/jquery.mobile-1.0a3.min.css" rel="stylesheet"
type="text/css"/>
<script src="../jquery-mobile/jquery-1.5.min.js" type="text/javascript"></script>
<script src="../jquery-mobile/jquery.mobile-1.0a3.min.js"
type="text/javascript"></script>
</head>
<body>
<div data-role="page" id="page1" data-theme="b" style="background-
image:url(images/bkgrnd-7.jpg)">
<div data-role="header">
<h1>Page One</h1>
</div>
</div>
<div data-role="content">
Content
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
<!--Additional pages and content with their own backgrounds...-->
</div>
</body>
</html>
答案 0 :(得分:2)
background:url(images/bkgrnd-7.jpg) no-repeat;
答案 1 :(得分:0)
您可以将CSS属性no-repeat
添加到背景图像中,并使其依赖于CSS3的媒体规则属性。
@media screen /*Computer screen*/
@media handheld /*Mobile devices*/
但请注意,平板电脑可能被视为移动设备或常规屏幕。
所以你可以做这样的事情
@media screen and (min-device-width: 480px) and (max-device-width: 800px)
@media handheld and (min-device-width: 480px)