css简单样式(旋转正方形、纸片旋转、轮播图3D、简单轮播图)

旋转正方形
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta charset="utf-8">
  <title>旋转立方体</title>
  <style type="text/css">
    .stage{
      position: relative;
      perspective: 800px;
    }  
    @keyframes rotate-frame{   /* 设置动画效果 */
      0% {
          transform: rotateX(0deg) rotateY(0deg);
      }
      
      50% {
          transform: rotateX(360deg) rotateY(0deg);
      } 
      100% {
          transform: rotateX(360deg) rotateY(360deg);
      }
    }
    .container{
      width: 450px;
      height: 450px;
      margin: 0 auto;
      transform-style:preserve-3d;
      animation: rotate-frame 8s infinite linear;
      animation-timing-function: all;
      animation-direction: normal;
  
      animation-fill-mode: backwards;

      transform-origin: 50% 50% 75px;

      /*background: yellow;   容器屏幕背景色*/
    }
    .container:hover{
      /*覆盖时暂停动画*/
      animation-play-state: paused;
    }
    .side{
      width: 150px;
      height: 150px;
      position: absolute;
      text-align: center;
      line-height: 150px;
      font-size: 50px;
    }
    .top{
      left: 150px;
      top: 0;
      transform: rotateX(-90deg);   /* 设置角度 */
      transform-origin: bottom;
      background-color: rgba(0,0,255,0.5);
    }
    .bottom{
      left: 150px;
      top: 300px;
      transform: rotateX(90deg);
      transform-origin: top;
      background-color: rgba(0,255,0,0.5);
    }
    .left{
      left: 0;
      top: 150px;
      transform: rotateY(90deg);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值