- <title>透明度</title>
- <style>
- div {
- width: 500px;
- height: 500px;
- background-color: orange;
-
- opacity: 0;
-
- opacity: 1;
-
- opacity: 0.5;
- }
- </style>
- </head>
- <body>
- <div>
- <img src="./images/phone.png" alt="">
- </div>
- </body>
复制代码
- <title>光标类型</title>
- <style>
- div {
- width: 200px;
- height: 200px;
- background-color: pink;
-
- cursor: pointer;
- cursor: text;
- cursor: move;
- }
- </style>
- </head>
- <body>
- <div></div>
- </body>
复制代码
|