javascript - 如何用js或者css3实现元素边框的动态效果,如图?
仅有的幸福
仅有的幸福 2017-06-30 09:57:39
[HTML讨论组]

光圈可以是一个,就这样类似王者荣耀的头像框,怎么才能实现?

仅有的幸福
仅有的幸福

全部回复(2)
PHP中文网
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .boxA {
            position: relative;
            width: 200px;
            height: 200px;
            border:2px solid yellow;
        }
        .boxB {
            position: absolute;
            width: 10px;
            height: 10px;
            top: 0;
            left: 0;
            background-color: pink;
            animation: mymove linear 5s infinite;
        }
        @keyframes mymove {
            25% {
                transform: translate(190px,0px);
            }
            50% {
                transform: translate(190px,190px);
            }
            75% {
                transform: translate(0px,190px);
            }
            100% {
                transform: translate(0px,0px);
            }
        }
    </style>
</head>
<body>
    <p class="boxA">
        <p class="boxB"></p>
    </p>
</body>
</html>
世界只因有你

用 css3动画属性,和transform

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号