首页 > 其他分享 >Tom and Jerry Light code

Tom and Jerry Light code

时间:2024-09-21 16:02:05浏览次数:4  
标签:code Light button Jerry height hut width background border

<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Hut Light Effect</title><style> /* Internal CSS */ body { margin: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background: #333; } .hut { position: relative; width: 300px; height: 200px; background: #7c4d3e; /* Hut exterior color */ border-radius: 10px; box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); } .hut::before { content: ''; position: absolute; top: -100px; /* Position the triangle on top */ left: 0; width: 0; height: 0; border-left: 150px solid transparent; border-right: 150px solid transparent; border-bottom: 100px solid #7c4d3e; /* Same color as the hut */ } .door { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); width: 80px; height: 100px; background: black; border-radius: 5px; transition: background 0.5s ease-in-out; } .hole { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 70px; height: 70px; background: black; border-radius: 80%; transition: background 0.5s ease-in-out; z-index: 10; } .button { position: absolute; bottom: 0%; transform: translateY(-50%); padding: 10px 20px; background: #555; color: #fff; border-radius: 5px; cursor: pointer; z-index: 20; transition: background 0.3s ease; } .button:hover { background: #777; } .button:hover ~ .hut .door, .button:hover ~ .hut .hole { background: rgb(234, 234, 13); } .jerry, .tom { display: none; } .button:hover ~ .hut .door .jerry, .button:hover ~ .hut .hole .tom { display: block; } .tom { margin-top: 0px; margin-left: 3px; height: 70px; width: 70px; border-radius: 80%; } .jerry { height: 80px; width: 80px; } </style><div class="button">Turn On Light</div> <div class="hut"> <div class="door"> @@##@@ </div> <div class="hole"> @@##@@ </div> </div>`登录后复制 以上就是Tom and Jerry Light code的详细内容,更多请关注我的其它相关文章!

标签:code,Light,button,Jerry,height,hut,width,background,border
From: https://www.cnblogs.com/aow054/p/18424127

相关文章

  • PHP利用endroid/qr-code生成个性二维码
    需先安装拓展库composerrequireendroid/qr-codeuseEndroid\QrCode\Color\Color;useEndroid\QrCode\Encoding\Encoding;useEndroid\QrCode\ErrorCorrectionLevel\ErrorCorrectionLevelHigh;useEndroid\QrCode\QrCode;useEndroid\QrCode\Label\Label;use......
  • Leetcode 406. 根据身高重建队列
    1.题目基本信息1.1.题目描述假设有打乱顺序的一群人站成一个队列,数组people表示队列中一些人的属性(不一定按顺序)。每个people[i]=[h_i,k_i]表示第i个人的身高为h_i,前面正好有k_i个身高大于或等于h_i的人。请你重新构造并返回输入数组people所表示的队列。返......
  • Leetcode 378. 有序矩阵中第 K 小的元素
    1.题目基本信息1.1.题目描述给你一个nxn矩阵matrix,其中每行和每列元素均按升序排序,找到矩阵中第k小的元素。请注意,它是排序后的第k小元素,而不是第k个不同的元素。你必须找到一个内存复杂度优于O(n^2)的解决方案。1.2.题目地址https://leetcode.cn/problem......
  • Leecode 最大子数组和
    思路1:先了解前缀和的概念,  ,这题的答案可以转换为:将前缀和pre数组的下标作为x,下标对应的值作为y,建立坐标系得到一条pre折线,找到折现所有最小值与最大值差值最大的(最小值在前最大值在后)值就是本题的答案,也是与买卖股票最佳时机思路一样了思路2:对于以nums[j]元素为结尾的最大......
  • Leecode 滑动窗口最大值
     使用了双向链表输入:nums=[1,3,-1,-3,5,3,6,7],和k=3输出:[3,3,5,5,6,7]解释过程中队列中都是具体的值,方便理解,具体见代码。初始状态:L=R=0,队列:{}i=0,nums[0]=1。队列为空,直接加入。队列:{1}i=1,nums[1]=3。队尾值为1,3>1,弹出队尾值,加入3。队列:{3}i=2,nums[......
  • (LeetCode 热题 100) 199. 二叉树的右视图(递归、深度优先搜索dfs)
    199.二叉树的右视图思路:递归每次都优先右边子树,然后才是左子树。/***Definitionforabinarytreenode.*structTreeNode{*intval;*TreeNode*left;*TreeNode*right;*TreeNode():val(0),left(nullptr),right(nullptr){}......
  • Transformer模型-7- Decoder
    概述Decoder也是N=6层堆叠的结构,每层被分3层:两个注意力层和前馈网络层,同Encoder一样在主层后都加有Add&Norm,负责残差连接和归一化操作。Encoder与Decoder有三大主要的不同:第一层MaskedMulti-HeadAttention:采用Masked操作第二层Multi-HeadAttention:K,V矩阵是......
  • vscode常用配置
    {"workbench.tree.indent":24,"workbench.colorCustomizations":{"editorLineNumber.activeForeground":"#9e3c2da2","editor.lineHighlightBorder":"#74423a77"},&qu......
  • [leetcode刷题]面试经典150题之3删除有序数组中的重复项(简单)
    题目 删除有序数组中的重复项给你一个 非严格递增排列 的数组 nums ,请你 原地 删除重复出现的元素,使每个元素 只出现一次 ,返回删除后数组的新长度。元素的 相对顺序 应该保持 一致 。然后返回 nums 中唯一元素的个数。考虑 nums 的唯一元素的数量为 k ,你......
  • LeetCode 876
    题目:LeetCode876解法一:快慢指针注意:while循环条件,以链表(1,2,3,4,null)为例:当条件为fast!=null&&fast.next!=null时,若链表元素为偶数个,则返回中间的后一个节点(3)当条件为fast.next!=null&&fast.next.next!=null时,若链表元素为偶数个,则返回中间的前一个节......