小练习

Posted 淅沥沥丶下雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小练习相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            *{
                margin: 0 auto;
                padding: 0;
                
            }
            #circle{
                width: 200px;
                height: 300px;
                border: 1px solid red;
                border-radius: 50%;
                overflow: hidden;
            }
            img{
                transition: 5s;
            }
            img:hover{
                transform:scale(1.5,1.5);
            }
        </style>
    </head>
    <body>
        <div id="circle">
            <img src="../../img/meinv.jpg" width="100%" height="100%"/>
        </div>
    </body>
</html>

 

鼠标上移,图片放大,超出部分隐藏。

 

以上是关于小练习的主要内容,如果未能解决你的问题,请参考以下文章

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

Android课程---Android Studio使用小技巧:提取方法代码片段

android小知识点代码片段

微信小程序代码片段分享

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

小程序各种功能代码片段整理---持续更新