|
最近遇到一个需求,下面充值金额按钮是一个背景图,点击之后显示的状态也是一个背景图,如下图
注意 : 在上层的图片显示在上面 , 下层的显示在下面;
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>多背景实例</title>
- <style>
- .bg {
- width: 600px;
- height: 500px;
- border: 1px solid;
- background-image: url("img/1.jpg"), url("img/2.jpg"), url("img/3.jpg"), url("img/4.gif"), url("img/5.jpg");
- background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
- background-position: top left, top right, bottom left, bottom right, center center;
- }
- </style>
- </head>
- <body>
- <div class="bg"></div>
- </body>
- </html>
复制代码
|
|