欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

要求 CSS/JS 默认隐藏 DIV,然后点击打开 EN

最编程 2024-06-20 07:23:15
...
代码语言:javascript
复制
.emoji-popup {
   position: absolute;
   top: -140px;
   left: 10px;
   height: 130px;
   width: 194px;
   background: #999;
   border-radius: 2px;
   text-align: left;
   overflow-y: auto;
   opacity: 0;
   pointer-events: none;
   transition: all 0.25s;
   box-sizing: border-box;
}

.emoji-wrapper {
   overflow: hidden;
   padding: 10px;
   box-sizing: border-box;
}
.emoji-popup .emoji-img {
   margin: auto;
   width: 30px;
   height: 30px;
   text-align: center;
   border-radius: 5px;
}

.emoji-popup .emoji-img:hover {
   background: rgba(0, 0, 0, 0.25);
}