马黑黑 发表于 2021-6-30 18:09

红影 发表于 2021-6-30 17:01
那真可惜,唱歌跳舞多快乐啊,为什么不学学呢

俺胖,跳不了舞;抽烟,唱不了歌。

红影 发表于 2021-6-30 19:21

马黑黑 发表于 2021-6-30 18:09
俺胖,跳不了舞;抽烟,唱不了歌。

可以欣赏对方啊,做个欣赏者多好啊。

杨柳青 发表于 2021-6-30 22:16

加林森 发表于 2021-6-30 00:02
色鬼

{:5_115:}

加林森 发表于 2021-6-30 23:05

本帖最后由 加林森 于 2022-4-26 18:02 编辑 <br /><br />杨柳青 发表于 2021-6-30 22:16

{:4_170:}

<style>
.spiBox {
   top:120px;left:-302px;
   position: relative;
   width: 1200px;
   height: 838px;
   background: #FFF url('https://pic.imgdb.cn/item/62676e6b239250f7c577a3b7.jpg') no-repeat center/cover;
   box-shadow: 4px 4px 5px #888;
   border-radius:12px;
}
.ball { /* 球体 */
      left:200px;top: 180px; width: 60px; height: 60px;
      background: Blue linear-gradient(135deg,rgba(65,105,225,.85),rgba(100,149,237,.95));
      position: absolute; border-radius: 50%;
      filter: drop-shadow(2px 2px 6px rgba(0,0,0,.7));
      transform: skew(2deg); cursor: pointer;
}
.ball::before { content: ''; position: absolute; } /* 伪元素:修饰 */
.ball::before { /* 伪元素一:高亮 */
      left: 0; top: 0; width: 100%; height: 100%; border-radius: 50%;
      background: radial-gradient(circle at 35% 40%,rgba(255,255,255,.75),rgba(0,0,0,.15));
}

.ball div { /* 子元素共2个:动画 */
      position: absolute; border: 8px solid rgba(0,0,0,.45); border-radius: 50%;
      border-color: #4682B4 #6495ED #4682B4 #6495ED;opacity: .55;
}
.ball div:nth-child(1) { left: -8px; top: -8px; right: -8px; bottom: -8px; animation: rot 4s linear infinite;}
.ball div:nth-child(2) { left: -16px; top: -16px; right: -16px; bottom: -16px;animation: rot 12s linear infinite; }
@keyframes rot { to { transform: rotate(1turn); } } /* 动画 转圈 */
.spiBox img {
      position: absolute;
      width: 139px;
      height: 108px;
      top: 40%;
      right: 0px;
      animation: walk 42s linear infinite;
}
@keyframes walk {
      0% { transform: rotate(0deg); right: 300px;top:330px; }
      10% { transform: rotate(0deg); right: 470px;top:310px; }
      20% { transform: rotate(0deg); right: 640px;top:290px; }
      30% { transform: rotate(0deg); right: 810px;top:290px; }
      40% { transform: rotate(0deg); right: 980px;top:310px; }
      50%{ transform: rotateY(180deg); right: 1000px;top:330px; }
      60%{ transform: rotateY(180deg); right: 830px;top:350px; }
      70%{ transform: rotateY(180deg); right: 660px;top:370px; }
      80%{ transform: rotateY(180deg); right: 490px;top:370px; }
      90%{ transform: rotateY(180deg); right: 320px;top:350px; }
      100%{ transform: rotateY(360deg); right: 300px;top:330px; }
}
.xiewen {/* 斜纹文本 */
      position: absolute;left:280px;top: -10px;
      width: 660px;
      height: 200px;
      line-height: 200px;
      font-family: '微软雅黑', '宋体';
      font-size: 4.2rem;
      font-weight: 900;
      text-align: center;
      background: darkgreen linear-gradient(45deg, transparent 45%, #eee 45%, #ccc 55%, transparent 0);
      background-size: 4px 4px;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke: 2px #111;
      animation: wenzi 4s linear infinite alternate;
}
@keyframes wenzi { 0%{opacity: 0.8;} 100% { opacity: 0.3; } }

/* 文字走马灯 */
.txtFly {
      position: absolute;
      --w: 300px;
      width: var(--w);
      left: 450px;
      top: 566px;
      overflow: hidden;
}
.txtFly div {
       word-break: keep-all;
       white-space: nowrap;
       font: normal 22px /24px '楷体','微软雅黑';
       color:#ccff99; text-shadow: 0 0 2px #ff66ff;
       animation: fly 32s linearinfinite;
}
/* 走马灯动画 */
@keyframes fly {
                from { transform: translateX(100%); }
                to { transform: translateX(calc(-280% - var(--w))); }
      }
</style>
<div class="spiBox">
      <img src="https://pic.imgdb.cn/item/62636e78239250f7c576253f.gif" alt="" />
<div class="ball">
      <div></div>
      <div></div>
</div>
<div class="xiewen">盤古開天</div>
<div class="txtFly" >
   <div>盤古開天--盘古开天地,中华立根基呀!三皇五帝夏商周呀,春秋战国百家聚。秦王扫六合,大汉雄风起呀,三国鼎立两晋南北朝呀,隋唐又统一。</div>
</div></div><br><br><br><br><br><br><br><br><br><br><br><br>

<script>
let flag = true;
let ball = document.querySelector(".ball");
let au = document.createElement("audio");
au.src = "https://www.joy127.com/url/83827.mp3";
au.autoplay = flag;
au.loop= true;
au.style.display = "none"
ball.appendChild(au);
ball.onclick = function(){
      if(flag) {
                Array.from(this.children).forEach(function(item){item.style.animationPlayState = "paused"; });
                au.pause();
                flag = false;
      } else {
                Array.from(this.children).forEach(function(item){item.style.animationPlayState = "running"; });
                au.play();
                flag = true;
      }
}
</script>

加林森 发表于 2021-6-30 23:09

朵嫣 发表于 2021-6-30 17:56
媽媽 女兒 都是大美人~
她家的地磚也好漂亮啊

是啊,美丽大方的姑娘!

加林森 发表于 2021-6-30 23:10

红影 发表于 2021-6-30 17:00
说明西方世界很心虚。

当然了嘛

红影 发表于 2021-7-1 09:48

加林森 发表于 2021-6-30 23:10
当然了嘛

咱们就是要高速发展,气死他们{:4_173:}

加林森 发表于 2021-7-1 10:55

红影 发表于 2021-7-1 09:48
咱们就是要高速发展,气死他们

对头

杨柳青 发表于 2021-7-1 22:27

加林森 发表于 2021-6-30 23:05


吃力吗~~{:5_115:}

加林森 发表于 2021-7-1 22:52

杨柳青 发表于 2021-7-1 22:27
吃力吗~~

啥意思?

杨柳青 发表于 2021-7-1 23:00

加林森 发表于 2021-7-1 22:52
啥意思?

看你笑得很吃力~~

加林森 发表于 2021-7-1 23:23

杨柳青 发表于 2021-7-1 23:00
看你笑得很吃力~~

你真奇怪啊

杨柳青 发表于 2021-7-7 22:12

加林森 发表于 2021-7-1 23:23
你真奇怪啊

奇怪吗~~~~{:4_196:}

加林森 发表于 2021-7-7 22:16

杨柳青 发表于 2021-7-7 22:12
奇怪吗~~~~

有点

杨柳青 发表于 2021-7-7 22:24

加林森 发表于 2021-7-7 22:16
有点

好像猜中~~可是~~你是怎么猜中的~~声明猜中没奖哦

加林森 发表于 2021-7-8 00:13

杨柳青 发表于 2021-7-7 22:24
好像猜中~~可是~~你是怎么猜中的~~声明猜中没奖哦

本队不需要{:4_361:}

杨柳青 发表于 2021-7-8 22:51

加林森 发表于 2021-7-8 00:13
本队不需要

{:5_115:}

加林森 发表于 2021-7-8 23:30

杨柳青 发表于 2021-7-8 22:51


又吃惊了?{:4_170:}

杨柳青 发表于 2021-7-18 23:01

加林森 发表于 2021-7-8 23:30
又吃惊了?

那是因为奇怪~~{:4_203:}

加林森 发表于 2021-7-18 23:22

杨柳青 发表于 2021-7-18 23:01
那是因为奇怪~~

奇怪什么?
页: 1 2 [3] 4
查看完整版本: 无惧外媒恶意曲解 阿依图娜展现真实新疆生活