美文网首页前端
【前端案例】transform 实现图像旋转

【前端案例】transform 实现图像旋转

作者: itlu | 来源:发表于2020-10-28 16:33 被阅读0次
    实现图片旋转
        <style>
    
            img {
                position: absolute;
                top: 10px;
                left: 100px;
                width: 300px;
                border: 1px solid #ccc;
                border-radius: 50%;
                cursor: pointer;
                transition: all linear 30s;
            }
    
            img:hover {
                left: 460px;
                transform: rotate(360deg);
            }
    
        </style>
    

    相关文章

      网友评论

        本文标题:【前端案例】transform 实现图像旋转

        本文链接:https://www.haomeiwen.com/subject/joccvktx.html