css单选radio按钮样式css多选框checkbox样式css响应式汉堡菜单(左滑、抽屉)css实现遮罩层弹出效果一组好看的css按钮效果(6种)css实现select下拉选择框css实现选项卡功能css实现下拉菜单css按钮样式代码(16种)css实现手风琴效果css图片轮播效果css进度条样式css实现侧边栏菜单css加载动画css背景动画效果css开关按钮样式(18种)css炫酷的圆形菜单css提示tooltip效果css手风琴_好看的Gallery伸缩效果css表格样式css分段控件导航栏css折角效果css粒子背景动画效果css进度圆圈连线css响应式分页样式代码css各种天气样式动画图标css层叠卡片滑出特效css下拉Dropdown菜单css圆圈按钮tip提示特效css和svg圆圈进度样式代码css动画404页面代码css爱心跳动动画代码css绘制逼真玻璃球效果css模拟开关灯特效创意css网格布局带动画效果css星级打分radio五角星css卡片悬浮翻转特效div上下浮动纯css动画css时间轴样式(timeLine)css文字循环翻滚动画效果css输入框动效css鼠标悬停缩放比例效果css模糊背景毛玻璃效果css实现小球循环跳动动画css实现标签样式Tagscss进度条阴影动画css绘制的小鸟css svg按钮冒泡动画特效css svg蓝色波浪动画特效css创意svg菜单栏水滴动画css文字进度条的实现CSS实现内容折叠/展开效果CSS3手机充电特效css实现鼠标点击拖拽效果CSS实现一个计时器纯CSS渐变绘制 Chrome 图标CSS 渐变来实现波浪动画

创意css网格布局带动画效果

LinkedIn

This is where I network and build my professional portfolio

_adamdipinto

Github

This is where I share code and work on projects

atom888


源码

<body>
<div class="square linkedin"><span></span><span></span><span></span>
<div class="content">
<h2> LinkedIn</h2>
<p>This is where I network and build my professional portfolio</p>
<a href="#" target="_blank">_adamdipinto</a>
</div>
</div>
<div class="square twitter"><span></span><span></span><span></span>
<div class="content">
<h2> Twitter</h2>
<p>This is where I read news and network with different social groups</p>
<a href="#" target="_blank">@AdamDipinto</a>
</div>
</div>
<div class="square github"><span></span><span></span><span></span>
<div class="content">
<h2> Github</h2>
<p>This is where I share code and work on projects</p>
<a href="#" target="_blank">atom888</a>
</div>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #f1f1f1;
}
.square {
position: relative;
margin: 0 10px;
width: 400px;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
}
.square span:nth-child(1) {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 2px solid black;
border-radius: 32% 58% 69% 43% / 48% 32% 59% 55%;
transition: 0.5s;
animation: animate 6s linear infinite;
}
.linkedin:hover span:nth-child(1) {
border: none;
background: #f07e6e;
}
.twitter:hover span:nth-child(1) {
border: none;
background: #84cdfa;
}
.github:hover span:nth-child(1) {
border: none;
background: #5ad1cd;
}
.square span:nth-child(2) {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 2px solid black;
border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
transition: 0.5s;
animation: animate 4s linear infinite;
}
.linkedin:hover span:nth-child(2) {
border: none;
background: #f07e6e;
}
.twitter:hover span:nth-child(2) {
border: none;
background: #84cdfa;
}
.github:hover span:nth-child(2) {
border: none;
background: #5ad1cd;
}
.square span:nth-child(3) {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 2px solid black;
border-radius: 31% 45% 74% 35% / 38% 56% 51% 87%;
transition: 0.5s;
animation: animate2 10s linear infinite;
}
.linkedin:hover span:nth-child(3) {
border: none;
background: #f07e6e;
}
.twitter:hover span:nth-child(3) {
border: none;
background: #84cdfa;
}
.github:hover span:nth-child(3) {
border: none;
background: #5ad1cd;
}
.content {
position: relative;
padding: 40px 60px;
color: #fff;
text-align: center;
transition: 0.5s;
z-index: 1000;
}

.content a {
position: relative;
display: inline-block;
margin-top: 10px;
border: 2px solid #fff;
padding: 6px 18px;
text-decoration: none;
color: #fff;
font-weight: 600;
border-radius: 73% 27% 44% 56% / 49% 44% 56% 51%;
}

.content a:hover {
background: white;
color: #333;
}

@keyframes animate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate2 {
0% {
transform: rotate(360deg);
}
100% {
transform: rotate(0deg);
}
}
</style>


链接: https://www.fly63.com/course/33_1609