react实现五彩的灯连线边框闪烁动画代码

代码语言:html

所属分类:布局界面

代码描述:react实现五彩的灯连线边框闪烁动画代码

代码标签: react 五彩 连线 边框 闪烁

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">
  

  
  
<style>
body {
	--shadow-blur: 8px;
	--bulb-size: 20px;
	--socket-color: green;
	--socket-width: 8px;
	--socket-height: 12px;
	
	background: #111;
}

.light-group {
	position: fixed;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.light-group.row {
	width: 100%;
	left: 0;
}

.light-group.col {
	flex-direction: column;
	height: 100%;
	top: 0;
}

.light-group.row.start {
	top: 0;
}

.light-group.row.end {
	bottom: 0;
}

.light-group.col.start {
	left: 0;
}

.light-group.col.end {
	right: 0;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.light-group.row .container {
  width: var(--spacing);
	padding: var(--socket-width) 0;
}

.light-group.col .container {
  height: var(--spacing);
	padding: 0 var(--socket-width);
}

.container:last-child .wire {
	display: none;
}

.wire {
	position: absolute;
	width: var(--spacing);
	height: var(--spacing);
}

.light-group.row.start .wire {
  transform: translateX(50%);
	bottom: 0;
}

.light-group.row.end .wire {
  transform: translateX(50%) scaleY(-1);
  top: 0;
}

.light-group.col.start .wire {
  transform: translateY(50%) rotate(-90deg);
  r.........完整代码请登录后点击上方下载按钮下载查看

网友评论0