纯css写一个带动画的弹框 visibility + opcity

css能实现各种各样的动态效果,比js实现简单,性能也比js实现高,现在我们就用纯css实现弹窗,主要用到了两个属性 opcity 和 visibility,

opctiy 这个属性很简单 控制元素透明度 ,visibility控制元素的显示和隐藏,他和display有一个很重要的区别,visibility可以用transition来进行过渡,而display并不可以,这就是我们不用display的原因

可以配合上transform: scale() 让弹窗更有动态感觉

全部代码:

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

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>纯css弹窗动画</title>
</head>
<style>
  * {
    margin: 0;
    padding: 0;
  }

  .alert-box {
    top: 0;
    left: 0;
    z-index: 999;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .alert-content {
    height: 130px;
    width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px 18px;
    transform: scale(0.8);
    transition: all 0.3s ease-in-out;
  }

  .alert-title {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }

  .alert-info {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }

  .alert-buttons {
    display: flex;
    justify-content: flex-end;
    font-size: 16px;
  }

  .alert-buttons>div {
    height: 30px;
    line-height: 30px;
    margin-left: 17px;
    width: 56px;
    text-align: center;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
  }

  .alert-submit {
    background: #409eff;
    color: #fff;
  }

  .alert-cancle {
    border: 1px solid #ccc;

  }

  .open {
    margin: 20px;
    height: 30px;
    width: 50px;
  }

  .show {
    visibility: visible;
    opacity: 1;
  }

  .show .alert-content {
    transform: scale(1);
  }

</style>

<body>
  <button class="open" onclick="openAlert()"> 打开 </button>
  <div class="alert-box" id="alertBox">
    <div class="alert-content">
      <div class="alert-title">提示</div>
      <div class="alert-info">提示框的内容</div>
      <div class="alert-buttons">
        <div class="alert-cancle" onclick="hiddenAlert()">取消</div>
        <div class="alert-submit" onclick="hiddenAlert()">确定</div>
      </div>
    </div>
  </div>
</body>

<script>

  function openAlert() {
    document.getElementById("alertBox").classList.add(‘show‘)
  }
  function hiddenAlert() {
    document.getElementById("alertBox").classList.remove(‘show‘)
  }
</script>

</html>

原文地址:https://www.cnblogs.com/Qqqing/p/12588386.html

时间: 2024-10-27 04:02:09

纯css写一个带动画的弹框 visibility + opcity的相关文章

还在为小三角形切图?使用纯CSS写一个简单的三角形

同学们,当美工给的设计图是这样: 或者这样: 我的内心其实是拒绝的-_-:但工作还得干,大部分同学会写 <style> .icon{width:20px;height:20px;display:block;margin:0 auto;background:url(...)} </style> <div class="con"> <div class="icon"></div> <span>添加会

纯css写一个大太阳的天气图标

效果 效果图如下 实现思路 div实现太阳的一条矩形光影 before伪元素制作另一条光影矩形,和已有的转变90° after伪元素画个圆实现太阳样式 dom结构 用两个嵌套的div容器,父容器来控制图标显示的位置,子容器用来写太阳的一条光影矩形的样式. <div class="container"> <div class="sunny"></div> </div> 专门建立的学习Q-q-u-n ⑦⑧④-⑦⑧③-零①②

16.纯 CSS 创作一个渐变色动画边框

原文地址:https://segmentfault.com/a/1190000014785816 感想:边框是伪元素::after来的: HTML代码: <div class="box"> you are my<br> FAVORIFE </div> CSS代码: html, body,.box { margin: 0; padding: 0; height: 100%; display: flex; justify-content: center;

纯css写一个switch开关

这样的简单的开关效果 1.html <div class="switch-box"> <div class="bg_con"> <input id="checked_1" type="checkbox" class="switch" value="0" /> <label for="checked_1"></lab

纯css写带小三角对话框

在实际样式中经常会遇到要写类似对话框的样式,而这种样式往往会有一个小三角,如下所示: 那么如何用css写出来呢,其实很简单,先让父元素相对定位,然后运用css的伪类before或after.就可以写个三角形,如果想要带边框的三角形,则可以两个重叠使用.代码如下: <div class="box2"> 纯css写带小三角对话框 </div> .box2{ float:left; position:relative; width:200px; height:100p

【转】纯CSS写三角形-border法[晋级篇01]

(1)有边框的三角形 我们来写下带边框的三角形. 如果是一个正方形,我们写边时,会用到border,但我们这里讨论的三角形本身就是border,不可能再给border添加border属性,所以我们需要用到其他办法. 最容易想到的,是叠加层.思路是将两个三角形叠加在一起,外层三角形稍大一些,颜色设置成边框所需的颜色:内层三角形绝对定位在里面.整体就能形成带边框三角形的假象. 这里就涉及到一个绝对定位的问题,上.下.左.右四种方向的三角形相对于父级定位是不同的.首先我们来看下,当定位都为0(left

纯CSS写三角形-border法[基础篇]

纯CSS写三角形-border法[基础篇] 注意:所有知识点将不考虑IE6 ( ̄▽ ̄") 在制作如上图所示的三角形时,我们基本采用PNG或GIF图片来实现,这种形式在编写代码时较容易掌握,所以得到普遍制作者的认可.但涉及到后期优化维护的话,就需要不断的修改图片,在图形编辑器和代码编辑器之间来回切换,这无疑是加大了工作量.所以,如果单纯利用CSS来写的话,不但可以减少网站零碎图片的数量.减少了加载图片的时间,而且在修改时不用再重新切图,减少工作量. CSS3出现以后,“方形旋转45度”制作三角形的

纯CSS写三角形-border法[晋级篇01]

纯CSS写三角形-border法[晋级篇01] 注意:所有知识点将不考虑IE6 ( ̄▽ ̄") (1)有边框的三角形 在上一篇完成简单的三角形border法后,我们来写下带边框的三角形. 如果是一个正方形,我们写边时,会用到border,但我们这里讨论的三角形本身就是border,不可能再给border添加border属性,所以我们需要用到其他办法. 最容易想到的,是叠加层.思路是将两个三角形叠加在一起,外层三角形稍大一些,颜色设置成边框所需的颜色:内层三角形绝对定位在里面.整体就能形成带边框三角

用CSS写一个简单的幻灯片效果页面

这里是修真院前端小课堂,每篇分享文从 [背景介绍][知识剖析][常见问题][解决方案][编码实战][扩展思考][更多讨论][参考文献] 八个方面深度解析前端知识/技能,本篇分享的是: [用CSS写一个简单的幻灯片效果页面] 1.背景介绍CSS3属性中有关于制作动画的三个属性:Transform,Transition,Animation. transform属性向元素应用2D或3D转换.该属性允许我们对元素进行旋转.缩放.移动或倾斜. transition是令一个或多个可以用数值表示的css属性值