html-css实例

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>求签</title>

        <style type="text/css">
            *{
                margin: 0px;
                padding: 0px;
                font-family: "微软雅黑",arial,sans-serif;
            }
            body{
                background: url(img/bg.png);
            }
            div{
                font-size: 10px;

            }
            .container{
                width: 400px;
                margin: 50px auto;
            }

            .container >.title{
                color: white;
                font-weight: bold;
                margin-bottom: 10px;
                background: -webkit-gradient(linear,left top,
                left bottom, from(#321def), to(#654abc), color-stop(0.5,#1a2b3c));
                padding: 5px 15px;
                font-size: 120%;
                text-align: center;
            }

            .date{
                font-size: 17px;
                font-weight: bold;
                line-height: 30px;
                text-align: center;
                border-bottom: 1px solid #999999;
            }

            .info{
                text-align: center;
                color: red;
                font-size: 9px;
            }
            .info strong{
                background: crimson;
                color: white;
                padding: 0 3px;
                margin: 0 1px;
            }
            .check_luck{
                padding-top: 10px;
            }

            .selecttable{
                width: 100%;
            }

            .selecttable td{
                color: white;
                text-align: center;
                padding: 10px 0;
                margin: 1px;
                background: -webkit-gradient(linear,left top,
                left bottom, from(#321def), to(#654abc), color-stop(0.5,#1a2b3c));
                cursor: pointer;
                width: 20%;
                border-radius: 2px;
            }
            .selecttable td:hover{
                background: rgba(0,0,0,0.5);
            }
            /*点击时候给每个td上类的属性*/
            .selecttable td.selected{
                background: #333333;
                color: #ffffff;

            }

            .roll{
                height: 200px;
                border: 1px solid #fafafa;
                margin-top: 10px;
                overflow: hidden;
                position: relative;
            }

            .card{
                background: white;/**/
                text-align: center;
                line-height: 200px;
                border-top: 1px dashed #fafafa;
                position: absolute;
                top: 201px;
                width: 100%;
            }

            .card.clickable{
                background: crimson;
                color: white;
                cursor: pointer;
            }

            .card .title{
                font-size: 70px;
                font-weight: bold;

            }
        </style>
    </head>
    <body>
        <div class="container">
            <div class="title">
                程序员求签
                <sup>sxt</sup>
            </div>
            <div class="date"></div>
            <div class="info">
                <strong>求</strong>婚丧嫁娶亲友疾病升级跳槽陨石核弹各类吉凶
            </div>
            <div class="check_luck">
                <table class="event_table selecttable">
                    <tr>
                        <td data-event="100">编码</td>
                        <td data-event="200">测试</td>
                        <td data-event="300">修改bug</td>
                        <td data-event="400">提交代码</td>
                        <td data-event="500">其他</td>
                    </tr>
                </table>
            </div>
            <div class="roll">
                <div class="card" style="top:-1px;font-size: 20px;">
                    请点击所求之事
                </div>
                <div class="card clickable">
                    <div class="title">
                        求
                    </div>
                </div>
            </div>
        </div>
    <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
    <script type="text/javascript">
        var weeks=["日","一","二","三","四","五","六"];
        var today=new Date();

        function getTodayString(){
            return "今天是"+today.getFullYear()+"年"+(today.getMonth()+1)
            +"月"+today.getDate()+"日"+today.getHours()+":"+today.getMinutes()
            +"星期"+weeks[today.getDay()];
        }
        /*时间显示到浏览器之上*/
        $(‘.date‘).html(getTodayString());

    </script>
    </body>

</html>

by北京尚学堂视频直播公开课的部分代码

2016-10-22晚

时间: 2024-10-18 09:50:40

html-css实例的相关文章

CSS实例:鼠标滑过超级链接文字时改变背景颜色

先讲简单的: 通过CSS可以设置超链接在不同时刻的颜色: <style> a:link {color: #FF0000} /* 未访问的链接 */ a:visited {color: #00FFFF} /* 已访问的链接 */ a:hover {color: #0000FF} /* 鼠标移动到链接上 */ a:active {color: #00FF00} /* 选定的链接 */ </style> <ul id="content"> <li&g

CSS实例 display display 边距

1 CSS学习大纲 2 在标签上设置style属性: 3 background-color:#2459a2 ; 4 height:48px ; 5 编写CSS样式: 6 1.标签的style属性 7 2.写在head里面,style标签中写样式 8 ID选择器 9 #i1{ 10 background-color:2459a2 ; 11 height:48px ; 12 } 13 class选择器 ***** 14 .c1{ 15 background - color: 2459a2 ; 16

CSS 实例

CSS 实例 CSS背景 设置页面的背景颜色 设置不同元素的背景颜色 设置一个图像作为页面的背景 错误的的背景图片 如何在水平方向重复背景图像 如何定位背景图像 一个固定的背景图片(这个图片不会随页面的其余部分滚动) 在一个声明的所有背景属性 高级的背景例子 背景属性的解释 CSS文本 设置不同元素的文本颜色 文本对齐 移除链接下划线 装饰文字 控制文本中的字母 缩进文本 指定了字符之间的空间 指定了行与行之间的空间 设置元素的文本方向 增加单词之间的空格 在一个元素内禁用文字换行 内部文字图像

独行DIV自适应宽度布局CSS实例与扩大应用范围

DIVCSS5先给大家介绍独立一列自适应宽度,也就是单独一行宽度自适应DIV的布局.通过DIV CSS实例CSS自适应宽度布局方法,再过常见用处介绍充分掌握自适应独占一行一列的布局技巧. 关键点:自适应,这个时候就不能使用固定的CSS宽度值,这个时候就只能使用百分比的宽度表达宽度. 关键代码:width:?% 以百分比为单位的百分比值,自然对象会根据设置百分比自动计算该对象宽度. 实例CSS代码: .box{ width:60%; height:80px; border:1px solid #F

html+CSS实例效果(5):em实现倒三角的提示效果

<div class="c_page mt14 clearfix"> <span class="record">1/14P   134Records</span> <span class="first disable"><em class="bar"></em><em class="leftjib"></em>&

css实例实用

1. border怎么写: color怎么写: 2.背景颜色怎么写:background部分 3.css和标签内的表现形式: 4. 上面p标签中的样式生效,如果上边两种都出现的话 5. 当出现冲突时,p只有一个elemnt,body p是两个elemnet,更具体,具体的生效. 若要生效就写的更具体. 6. class比element权重大,因为它让选择更具体 7. 元素和id,id权重更大,因为css认为id更具体 8. id比class权重更大,css中innerStyle的最大 9. 标签

CSS实例:水平居中和垂直居中的多种解决方案

1.单行垂直居中 文字在层中垂直居中vertical-align 属性是做不到的.我们这里有个比较巧妙的方法就是:设置height的高度与line-height的高度相同! Example Source Code [www.52css.com] <div style="line-height:500px;height:500;"></div> 2.层水平居中 设置div的宽度小于父div的宽度,设置 margin:0 auto;,即可让div居中. Exampl

CSS实例教程:十步学会用CSS建站

本教程主要参考Creating a CSS Layout from scratch,由Jorux翻译,以意译为主,其间加入了不少Jorux的个人观点,省略了一些多余的说明,请读者明鉴. 目录: 第一步:规划网站,本教程将以图示为例构建网站: 第二步:创建html模板及文件目录等: 第三步:将网站分为五个div,网页基本布局的基础: 第四步:网页布局与div浮动等: 第五步:网页主要框架之外的附加结构的布局与表现: 第六步:页面内的基本文本的样式(css)设置: 第七步:网站头部图标与logo部分

html+CSS实例效果(2):边框为阴影及DIV内容垂直居中效果

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-

CSS实例:Tab选项卡效果

页面1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Cont