当前位置:首页 > 网站应用

摇摆的灯光

cjw1231年前 (2024-09-20)网站应用2550

点击运行看演示效果!

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

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>摇摆的灯光</title>
  <style>
    *{padding:0;margin:0}body{height:100vh;background:#212534;display:flex;align-items:center;justify-content:center;font-family:"Montserrat",sans-serif;font-size:50px}.room{position:relative;max-width:600px;width:100%;height:400px;border:1px solid white;display:flex;justify-content:center;align-items:flex-end}.room:before{content:'';position:absolute;top:0;width:40px;height:10px;background:#D3AF37;border-radius:0px 0px 10px 10px}.lamp{position:absolute;inset:0 auto 0 auto;width:40px;height:150px;display:flex;justify-content:center;animation:move 3s cubic-bezier(0.645,0.045,0.355,1.000) infinite alternate;transform-origin:top center}.lamp .line{width:2px;height:100%;background:#D3AF37}.lamp .base{position:absolute;bottom:0;width:100%;height:30px;background:#D3AF37;transform:translateY(100%);border-radius:50% 50% 50% 50% / 50% 50% 0 0;perspective:4px}.light{position:absolute;left:50%;bottom:0;transform-style:preserve-3d;transform:translate(-50%,calc(100% + 9px)) rotateX(3deg);width:55px;height:60px;background:white;box-shadow:0 1px 8.3px 5.8px #fff,0 1px 10.5px 0px #fff}.text{position:relative;width:100%;height:50%;display:flex;align-items:center;justify-content:center;z-index:1}.text span{color:#212534;mix-blend-mode:difference}@keyframes move{0%{transform:rotate(35deg)}100%{transform:rotate(-35deg)}}
  </style>
</head>

<body>
  <div class="room">
    <div class="lamp">
      <div class="line"></div>
      <div class="base">
        <div class="light"></div>
      </div>
    </div>
    <div class="text">
      <span>追求完美BLOG</span>
    </div>
  </div>
</body>

</html>


扫描二维码推送至手机访问。

版权声明:本文由追求完美发布,如需转载请注明出处。

本文链接:https://www.cjw123.com/blog/?id=105

标签: html
分享给朋友:

相关文章

html meta标签屏蔽搜索引擎的用法

html页面中的 meta 标签可以用来识别搜索引擎的蜘蛛类型,可以规定meta标签所在的html页面是否被蜘蛛抓取,下面是这个meta标签的用法,大家可以借鉴一下。搜索引擎的 meta 标签的解析下面是meta标签对搜索引擎的解析<meta name='robot…

纯CSS实现菜单炫酷点击展开收起效果

通过纯css3实现展开收缩的弹性动画菜单,可以应用于PC端或移动端页面中,非常实用效果也非常的炫酷,喜欢的码友们可以尝试一下,效果如下:完整代码如下:<!doctype html><html><head><meta charset=&qu…

js+css3文字闪光滑过动画特效

<!DOCTYPE html>     <html>     <head>     <meta http-equ…

漂亮弹窗公告代码

<html xmlns="http://www.w3.org/1999/xhtml"> <head>   <meta http-equiv="Content-Type" con…

灯光追踪

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">…

定时炸弹,网页特效

点击下面的运行看效果:<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-…

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。