分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 前端开发

css3练习

发布时间:2023-09-06 01:24责任编辑:彭小芳关键词:暂无标签

1、画小风车

参考自:作者:爱喝酸奶的吃货

    出处:http://www.cnblogs.com/yingzi1028/

windmill.html

<!DOCTYPE html><html>  <head>    <meta charset="utf-8">    <title>css画大风车</title>    <style type="text/css">  .wrap{      width:320px;      height:320px;      position:absolute;      animation:rotate 2s linear infinate;    }  .box1,.box2,.box3,.box4{width:160px;height:160px;position:absolute;}  .box1{    left:80px;    background:linear-gradient(to right,#00ced1 50%,transparent 50%);    border-radius:80px 0 0 80px;    }  .box2 {    right: 0;    background: linear-gradient(to bottom, #ff4500 50%, transparent 50%);    border-radius: 80px 80px 0 0;    top: 80px;    }  .box3 {    left: 80px;    background: linear-gradient(to left, #ffc0cb 50%, transparent 50%);    border-radius: 0 80px 80px 0;    top: 160px;    }    .box4 {      top: 80px;      background: linear-gradient(to top, #d4dc14 50%, transparent 50%);      border-radius: 0 0 80px 80px;      }    .gunzi {      width: 20px;      height: 260px;      background: black;      position: absolute;      z-index: -1;      top: 168px;      left: 160px;      }    @keyframes rotate {      from {        transform: rotate(0deg);      }      to {        transform: rotate(360deg);        }      }    </style></head><body>   <div class=‘Windmill-content‘>   <div class="wrap">    <div class="box1"></div>    <div class="box2"></div>    <div class="box3"></div>    <div class="box4"></div>    </div>    <div class="gunzi"></div>  </div></html>

  

2、z-index示例

<!DOCTYPE html><html lang="zh-cn"><head><meta charset="utf-8"><style>.z1,.z2,.z3{position:absolute;width:200px;height:100px;color:#fff;text-align:right;}.z1{z-index:1;background:#000;}.z2{z-index:2;top:30px;left:30px;background:#C00;}.z3{z-index:3;top:60px;left:60px;background:#999;}</style></head><body><div class="z1">z-index:1</div><div class="z2">z-index:2</div><div class="z3">z-index:3</div></body>

  

css3练习

原文地址:http://www.cnblogs.com/yiyiyurou/p/7818726.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved