码迷,mamicode.com
首页 > 其他好文 > 详细

超级酷炫的悬浮效果

时间:2018-05-17 18:24:42      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:const   按钮   sel   作用   poi   radius   etl   sele   osi   

今天在奇舞周刊上看到了一篇文章,看到其酷炫的效果,自己忍不住试了一下,小伙伴们都惊呆了。。。这个效果是将光标移动到按钮上的不同位置产生的彩色渐变。

技术分享图片

代码如下:

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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>酷炫效果展示</title>
    <style>
        button {
            border: none;
            outline: none;
            color: white;
            font-size: 1.2em;
            cursor: pointer;
            border-radius: 100px;
            position: relative;
            appearance: none;
            background: #f72359;
            padding: 1em 2em;
            overflow: hidden;
        }

        button span {
            position: relative;
        }

        button::before {
            --size: 0;
            content: ‘‘;
            position: absolute;
            left: var(--x);
            top: var(--y);
            width: var(--size);
            height: var(--size);
            background: radial-gradient(circle closest-side, #4405f7, transparent);
            transform: translate(-50%, -50%);
            transition: width .2s ease, height .2s ease;
        }

        button:hover::before {
            --size: 400px;
        }
    </style>
</head>

<body>
    <button>
        <span>Hover me I‘m awesome</span>
    </button>
    <script>
        document.querySelector(button).onmousemove = (e) => {
            const x = e.pageX - e.target.offsetLeft
            const y = e.pageY - e.target.offsetTop
            var tag = e.target.tagName == BUTTON ? e.target : e.target.parentNode;
            tag.style.setProperty(--x, `${x}px`)
            tag.style.setProperty(--y, `${y}px`)
        }
    </script>
</body>
</html>

至于各行的代码作用就需要自己探索了。。。

 

简单的代码就能实现这么酷炫的效果,伙伴们get起来吧!!!

 

超级酷炫的悬浮效果

标签:const   按钮   sel   作用   poi   radius   etl   sele   osi   

原文地址:https://www.cnblogs.com/-bingyan/p/9052150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!