Blogger Information
Blog 31
fans 0
comment 1
visits 21171
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3.15日课程作业:仿照案例完成一个段子排版
杜苏华迈专注于物联网可视化管理的博客
Original
518 people have browsed it

作业截图.png


手抄作业.png


实例

<!DOCTYPE html>
<html>
<!--head中的浏览器对用户是没用的,是给浏览器看的-->
<head>
    <meta charset="UTF-8" />
    <title>华迈千里眼远程视频专家</title>
    <style type="text/css">
    div {
        width: 400px;
        height:250px;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 5px 5px 5px #888;
        /*background-color: #efefef;*/
        background-image: url(images/ygcf.png);
        background-size: 430px 280px;
        background-repeat: no-repeat;
    }
    .text {
        color:#363636;
        text-indent: 3em;
        line-height: 1.5em;
        font-size:20px
    }
</style>
</head>
<body>
<div>
    <h3 style="color:blue;text-align: center;font-size:20px" onmouseover="change(this)"
onmouseout="old(this)">华迈千里眼:阳光厨房</h3>
<p>阳光厨房是实现以现代信息化方式对整个餐饮厨房的食品卫生及食品安全动态进行实时监控和管理,运用网络视频监控技术,为民众提供优质可控餐饮环境,为食品安全护航。</p>
</div>
<script type="text/javascript">
    function change(element) {
        element.style.fontSize = '20px'
        element.style.color = 'red'
    }
    function old(element) {
        element.style.fontSize = '15px'
        element.style.color = 'brown'
    }
</script>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments