就这个特效按钮,这能气死哪个前端,很难吗?

网上刷到一个气死前端的按钮,白天黑夜切换的效果。

参考图片

我想着,这不纯代码就能实现嘛。
看下我实现的效果:

https://article.biliimg.com/bfs/article/2c413029f97c0887b3e5a480c6e8157e0a57e420.gif
也就70多行html,280多行css

纯手撸代码,拿走不谢

React:

import cx from 'classnames';
import React from 'react';
import styles from './index.less';

const Star = ({
  color = '#fff'
}: {
  color?: string
}) => {
  const width = 20;
  const half = 10  //width/2;
  const quat = 5   //width/4;
  return <svg version="1.1" 
    viewBox={"0 0 "+width+" "+width+""}
    height={width} width={width} style={{
      width: '100%',
      height: '100%'
    }}
  >
    <path 
      d={"M 0 "+half+" c "+quat+" 0 "+half+" -"+quat+" "+half+" -"+half+" c 0 "+quat+" "+quat+" "+half+" "+half+" "+half+" c -"+quat+" 0 -"+half+" "+quat+" -"+half+" "+half+" c 0 -"+quat+" -"+quat+" -"+half+" -"+half+" -"+half+""} 
      stroke={color} strokeWidth={1} fill={color} 
    />
  </svg>
}

interface ViewProps extends React.HTMLAttributes<HTMLSpanElement> {
  active?: boolean;
}
export default class ButtonWeather extends React.Component<ViewProps> {
  public state = {
    activeState: false  //临时展示用
  }
  public render() {
    const { active, className, children, ...restProps } = this.props;
    const { activeState } = this.state

    return (
      <span className={cx(styles.button, {[styles.night]: activeState}, className)} {...restProps} onClick={() => {
        this.setState({ activeState: !activeState})
      }}>
        <span className={styles.btnInner}>
          <span className={styles.circle}>
            <span className={styles.circleNight}>
              <span className={styles.crater} />
              <span className={cx(styles.crater, styles.crater2)} />
              <span className={cx(styles.crater, styles.crater3)} />
            </span>
          </span>
          <span className={styles.haloBox}>
            <span className={styles.halo} />
            <span className={cx(styles.halo, styles.halo2)} />
            <span className={cx(styles.halo, styles.halo3)} />
          </span>
          <span className={styles.clouds}>
            {new Array(7).fill(1).map((e, ind) => (
              <span className={cx(styles.cloud, styles['cloud'+(ind+1)])} key={ind+'cloud'} />  
            ))}
          </span>
          <span className={cx(styles.clouds, styles.clouds2)}>
            {new Array(7).fill(1).map((e, ind) => (
              <span className={cx(styles.cloud, styles['cloud'+(ind+1)])} key={ind+'cloud'} />  
            ))}
          </span>
          <span className={styles.stars}>
            <span className={styles.star}><Star /></span>
            {new Array(10).fill(1).map((e, ind) => (
              <span className={cx(styles.star, styles['star'+(ind+1)])} key={ind+'star'}><Star /></span>  
            ))}
          </span>
        </span>
      </span>
    );
  }
}

Less:

@btnW: 150px;
@btnH: 66px;
@paddingL: 6px;
@time: 0.6s;

.button {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
}
.btnInner {
  transition: all @time ease-in-out;
  line-height: 0;
  display: inline-block;
  position: relative;
  height: @btnH;
  width: @btnW;
  border-radius: 100px;
  background: #1c80da;
  box-shadow: inset 0 2px 6px #000, 0 0 3px rgba(0,0,0,0.6);
  overflow: hidden;
}
.circle {
  transition: all @time ease-in-out;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  width: @btnH - @paddingL - @paddingL;
  height: @btnH - @paddingL - @paddingL;
  top: @paddingL; left: @paddingL;
  background: #ffdd08;
  border-radius: 100px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.6), inset -0.5px -1px 3px rgba(0,0,0,0.6), inset 1px 1px 3px rgba(255,255,255,0.8);
  .circleNight {
    transition: all @time ease-in-out;
    position: absolute;
    top: 0; 
    left: 101%;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: #c7d0da;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.6), inset -0.5px -1px 2px rgba(0,0,0,0.6), inset 1px 1px 2px rgba(255,255,255,0.8);
  }
  .crater {
    position: absolute;
    width: 25%;
    height: 25%;
    top: 12%;
    left: 44%;
    border-radius: 100px;
    background: #909baf;
    &.crater2 {
      width: 34%;
      height: 34%;
      top: 42%;
      left: 16%;
    }
    &.crater3 {
      width: 19%;
      height: 19%;
      top: 62%;
      left: 63%;
    }
  }
}
.haloBox {
  transition: all @time ease-in-out;
  position: absolute;
  z-index: 1;
  width: 0; height: 0;
  left: @btnH / 2;
  top: @btnH / 2;
  .halo {
    transition: all @time ease-in-out;
    width: @btnH * 1.4;
    height: @btnH * 1.4;
    position: absolute;
    background: #fff;
    opacity: 0.1;
    border-radius: 1000px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    &.halo2 {
      width: @btnH * 1.4 + 25;
      height: @btnH * 1.4 + 25;
    }
    &.halo3 {
      width: @btnH * 1.4 + 50;
      height: @btnH * 1.4 + 50;
    }
  }
}
.clouds {
  transition: all @time ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition-delay: 0s;
  &.clouds2 {
    transition-delay: @time * 0.2;
    top: 19%;
    left: -5%;
    opacity: 1;
    transform: rotate(5deg);
    .cloud {
      top: 2%;
      left: 92%;
      &.cloud2 {
        top: 39%;
        left: 69%;
      }
    }
  }
  .cloud {
    position: absolute;
    background: #fff;
    border-radius: 100px;
    width: @btnH * 0.9;
    height: @btnH * 0.9;
    top: -17%;
    left: 84%;
    &.cloud2 {
      width: @btnH * 0.68;
      height: @btnH * 0.68;
      top: 39%;
      left: 69%;
    }
    &.cloud3 {
      width: @btnH * 0.73;
      height: @btnH * 0.73;
      top: 47%;
      left: 54%;
    }
    &.cloud4 {
      width: @btnH * 0.2;
      height: @btnH * 0.2;
      top: 64%;
      left: 49.7%;
    }
    &.cloud5 {
      width: @btnH * 0.57;
      height: @btnH * 0.57;
      top: 64%;
      left: 32%;
    }
    &.cloud6 {
      width: @btnH * 0.73;
      height: @btnH * 0.73;
      top: 81%;
      left: 13%;
    }
    &.cloud7 {
      width: @btnH * 0.45;
      height: @btnH * 0.45;
      top: 85%;
      left: 7%;
    }
  }
}
.stars {
  transition: all @time ease-in-out;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  .star {
    transition: all @time ease-in-out;
    transform: translateY(-20px);
    display: inline-block;
    position: absolute;
    left: 20%;
    top: 20%;
    width: 10px;
    &.star2 {
      left: 10%;
      top: 30%;
      width: 4px;
      transition-delay: 0.1s;
    }
    &.star3 {
      left: 20%;
      top: 48%;
      width: 3px;
      transition-delay: 0.15s;
    }
    &.star4 {
      left: 11%;
      top: 76%;
      width: 4px;
      transition-delay: 0.24s;
    }
    &.star5 {
      left: 16%;
      top: 71%;
      width: 4px;
      transition-delay: 0.20s;
    }
    &.star6 {
      left: 23%;
      top: 79%;
      width: 5px;
      transition-delay: 0.26s;
    }
    &.star7 {
      left: 44%;
      top: 26%;
      width: 4px;
      transition-delay: 0.04s;
    }
    &.star8 {
      left: 37%;
      top: 50%;
      width: 4px;
      transition-delay: 0.14s;
    }
    &.star9 {
      left: 44%;
      top: 68%;
      width: 6px;
      transition-delay: 0.12s;
    }
    &.star10 {
      left: 52%;
      top: 37%;
      width: 8px;
      transition-delay: 0.05s;
    }
  }
}
.night {
  .btnInner {
    background: #252525;
  }
  .circle {
    left: @btnW - @btnH + @paddingL;
    .circleNight {
      left: 0;
    }
  }
  .haloBox {
    left: @btnW - @btnH / 2;
    .halo {
      opacity: 0.13;
    }
  }
  .clouds {
    top: 100%;
    transition-delay: @time * 0.2;
    &.clouds2 {
      transition-delay: 0s;
    }
    .cloud {
    }
  }
  .stars {
    top: 0;
    .star {
      transform: translateY(0);
    }
  }
}
.button {
  &:hover {
    .circle {
      transform: translateX(5px);
    }
    .haloBox {
      transform: translateX(5px);
    }
    &.night {
      .circle {
        transform: translateX(-5px);
      }
      .haloBox {
        transform: translateX(-5px);
      }
    }  
  }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容