老式经典电视机模拟雪花开机效果
代码语言:html
所属分类:动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> @import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono&display=swap"); * { box-sizing: border-box; padding: 0; margin: 0; } body { min-height: 100vh; display: flex; justify-content: center; align-items: center; font-family: "IBM Plex Mono", monospace; background: hsl(0, 0%, 5%); color: hsl(0, 0%, 100%); } /* canvas and section side by side */ div { padding: 0.75rem; display: flex; background: hsl(0, 0%, 10%); box-shadow: 0 0 5px -2px #000000; } /* on smaller screen, reposition the canvas atop the section */ @media screen and (max-width: 500px) { div { flex-direction: column; } .........完整代码请登录后点击上方下载按钮下载查看
网友评论0