3.15

郭恒的博客
郭恒的博客原创
2018年03月16日 15:12:44610浏览


IMG_20180316_121532_Burst01.jpg

<!DOCTYPE html>

<html>

    <head>

        <meta charset="UTF-8">

        <title>向日葵</title>

        <style type="text/css">

            .div{

                width: 800px;

                height: 300px;

                padding: 30px;

                background-image: url(images/3.15.jpg);

                background-size: 860px 360px;

                background-repeat: no-repeat;

                border-radius: 30px;

                box-shadow: 6px 6px 6px #888;

            }

            .p{

                color: blue;

                line-height: 1.5em;

                text-indent: 2em;

            }

        </style>

    </head>

    <body>

        <div class="div">

            <h3 style="color:red;text-align:center;font-size: 30px;" onmouseover="change(this)" onmouseout="old(this)">向日葵</h3>

            <p class="p">向日葵,因花序随太阳转动而得名。其具有向光性,人们称它为太阳花,随太阳回绕的花。在古代的印加帝国,向日葵是太阳神的象征。<br>因此向日葵的花语是太阳。</p>

        </div>

        <script type="text/javascript">

            function change(mouse) {

                mouse.style.fontSize = '35px';

                mouse.style.color = 'blue';

            }

            function old(mouse) {

                mouse.style.fontSize = '30px';

                mouse.style.color = 'red';

            }

        </script>

    </body>

</html>

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议