当前位置:首页 > 网站应用 > 正文内容

摇摆的灯光

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

点击运行看演示效果!

<!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...

js弹出居中窗口特效

<html> <head> <title>弹出窗口效果</title> <style> .black_overlay{display:none;position:absolute;top:0%;left:0%;width:100%;...

简洁的js网页计算器

主要是应用box-shadow<!DOCTYPE html><html><head><meta charset=utf-8 /><title>Calculator</title> <styl...

纯CSS实现侧边栏浮动在线客服效果

很多人一般在网页的侧边会选择放一个悬浮的在线客服,方便意向客户的联系,网上随便一搜也会有很多代码提供,但是大多都是JS书写的,并且夹带着一些图片素材乱七八糟的东西,用起来很不方便。今天我们就教给大家一个纯css书写的在线客服效果首先我们有如下html结构<div class=&quo...

文字特效代码:超酷文字快速展示

<!--要完成此效果需要三个步骤 第一步:把如下代码加入到<head>区域中--> <style> .let{ color:white; font-family:Verdana; font-weight:bold; width:500; filte...

html 文字闪烁功能的 js 代码

<span id="blink"><b>文字闪烁,追求完美blog</b></span> <script type = "text/javascript" ...

发表评论

访客

看不清,换一张

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