css布局实现水滴效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现水滴效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body{
background:black;
}
.container{
position:relative;
width:400px;
height:300px;
background:#121212;
margin:172px auto;
display:-webkit-box;
display:flex;
-webkit-box-pack:center;
justify-content:center;
}
.circ{
position:absolute;
width:132px;
height:132px;
border-radius: 121px 121px 121px 0;
background: -webkit-gradient(linear, left bottom, left top, color-stop(5%, #962161), color-stop(65%, #12bbea));
background: linear-gradient(0deg, #962161 5%, #12bbea 65%);
border:7px solid #330060;
-webkit-transform:rotate(135deg);
transform:rotate(135deg);
top:70px
}
..........完整代码请登录后点击上方下载按钮下载查看
















网友评论0