CSS3相关知识练习

一、问答

CSS3有哪些常见的新特性?

** 1、CSS 选择器 **
例如:E:nth-child(even),E :nth-child(odd),E:not(),E:first-child,E:nth-last-child(n) ,E:nth-of-type(n),E:nth-last-of-type(n),E:last-child,E:first-of-type ,E:checked 等等
** 2、盒模型 **
例如:box-sizing: border-box
** 3、背景和边框 **

  • a、背景
    background-clip 规定背景的绘制区域;
    background-origin 规定背景图片的定位区域;
    background-size 规定背景图片的尺寸;
  • b、边框
    border-image 设置所有边框图像的速记属性。
    border-radius 一个用于设置所有四个边框- *-半径属性的速记属性
    box-shadow 附加一个或多个下拉框的阴影

** 4、文字特效 **
text-shadow属性适用于文本阴影;
word-wrap:break-word 自动换行属性允许您强制文本换行
word-break: keep-all;//break-all 单词拆分换行属性
@font-face 规则

** 5、2D/3D转换 **

Paste_Image.png
3D转换属性
3D 转换方法

** 6、动画 **

Paste_Image.png

** 7、多列布局 **

Paste_Image.png

** 8、用户界面 **

Paste_Image.png

** 9、渐变**
线性渐变(Linear Gradients)- 向下/向上/向左/向右/对角方向
径向渐变(Radial Gradients)- 由它们的中心定义

以上具体详情见此处:http://www.runoob.com/css3/css3-tutorial.html

补充:
1、关于3d转换的资料可详见: http://www.w3cplus.com/css3/css3-3d-transform.html
2、关于2d中的transform:matrix() 可详见如下:
http://www.zhangxinxu.com/wordpress/2012/06/css3-transform-matrix-%E7%9F%A9%E9%98%B5/

3、对于低版本IE(IE6-IE9)兼容CSS3方法可见:css3pie官网PIE使IE支持CSS3圆角盒阴影与渐变渲染

二、代码

(一)、写出如下 CSS3效果的简单事例

1、圆角, 圆形
2、div 阴影
3、2D 转换:放大、缩小、偏移、旋转
4、3D 转换:移动、旋转
5、背景色渐变
6、过渡效果
7、动画

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .circularA{
            width: 100px;
            height:100px;
            border: 1px solid #000;
            border-radius: 10px;
            background-color: #6633FF;
            text-align: center;
            line-height: 100px;
            margin: 10px;
        }
        .circularB{
            width: 100px;
            height:100px;
            border: 1px solid #000;
            border-radius: 50%;
            background-color: #FF6699;
            text-align: center;
            line-height: 100px;
            margin: 10px;
        }
        .shadow{
            background-color: white;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            text-align: center;
            margin: 10px;
            width: 50%;
            height: 50%;
            color: #666;
            transform: rotate(-7deg);
        }
        .shadow>img{
            width: 90%;
            height: 90%;
            margin-top: 20px;
        }

        .change2d{
            /*margin: 100px;*/
            color: #666;
            text-align: center;
            width: 300px;
            margin: 150px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
            transform: rotate(9deg);

          }
        .change2d>img{
            margin-top: 20px;
            width: 90%;
            height: auto;
            color: #666;
            cursor: pointer;

        }
        .change2d:hover{
            transform: matrix(1.5,0,0,1.5,50,50);
            transition: all 1s;
        }
        .change3d{
            /*margin: 100px;*/
            color: #666;
            text-align: center;
            width: 300px;
            margin: 150px;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

        }
        .change3d>img{
            margin-top: 20px;
            width: 90%;
            height: auto;
            color: #666;
            cursor: pointer;

        }
        .ct-3d{
            /*transform-style:preserve-3d;*/
            perspective: 160;
            -webkit-perspective:160; /* Safari and Chrome */
            perspective-origin:150% center;
            -webkit-perspective-origin:150% center;/* Safari and Chrome */
        }
        .change3d:hover{
            transform:rotateX(5deg) translate3d(250px,50px,10px);
            transition: all 1s;
        }
        .bgGradient{
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: repeating-radial-gradient(red ,green,blue 10%);
        }
        .transitionEg{
            width: 300px;
            height: 500px;
            margin: 50px 10px 10px 150px;
            transform-style:preserve-3d;
        }
        .transitionEg img{
            position: absolute;
            top: 0;
            left: 0;
            width: 300px;
            height: 400px;

        }
        .transitionEg img:nth-child(1){
            z-index: 1;
            opacity: .6;

        }
        .transitionEg img:nth-child(2){
            z-index: 2;
            -webkit-transform: scaleZ(3) rotateX(45deg);
            transform: scaleZ(3) rotateX(45deg);

        }
        .transitionEg h3{
            position: absolute;
            top: 80%;
            left: 20%;

        }
        .transitionCt{
            position: relative;
            -webkit-perspective: 4200;
            perspective: 4200;
            cursor: pointer;

        }
        .transitionCt:hover{
            -webkit-perspective: 2200;
            perspective: 2200;
            transition: all 2s;
        }
        .btn{
            margin: 20px 10px 200px 10px;
            display: inline-block;
            padding: 15px 25px;
            font-size: 24px;
            font-weight: bolder;
            cursor: not-allowed;
            text-align: center;
            color: #fff;
            border-radius: 15px;
            background-color: #4caf39;
            box-shadow: 0 20px #999;
        }
        @keyframes myfirstAnimation {
            from { }
            to{
                background-color: #0c8e35;
                box-shadow: 0 2px #666;
                transform: translateY(12px);
            }
        }
        .btn{
            -webkit-animation: myfirstAnimation 2s linear 1.5s infinite;
            animation: myfirstAnimation 2s linear 1.5s infinite;
            /*-webkit-animation-name:myfirst;*/
            /*-webkit-animation-duration:5s; 完成时间 */
            /*-webkit-animation-timing-function:linear;规定动画的速度曲线。默认是 "ease"。*/
            /*-webkit-animation-delay:2s; 延迟时间*/
            /*-webkit-animation-iteration-count:infinite; 循环次数 */
            /*-webkit-animation-direction:alternate; 是否反过来运行*/
            /*-webkit-animation-play-state:running;规定动画是否正在运行或暂停*/
        }
        .animateEg{
            height: 100px;
            width: 400px;
        }

    </style>
</head>
<body>
<div class="circularA">圆角</div>
<div class="circularB">圆形</div>
<div class="shadow">![](./lunbo2.jpg)<h3>美丽的风景</h3></div>
<div class="change2d">![](./lunbo1.jpg)<h3>鼠标放上去我会放大</h3></div>
<div class="ct-3d">
    <div class="change3d">![](./1.jpg)<h3>鼠标放上去我会移动和旋转</h3></div>
</div>
<div class="bgGradient"></div>
<div class="transitionCt">
<div class="transitionEg">
    ![](./lunbo3.jpg)
    ![](./lunbo3.jpg)
    <h3>鼠标放上来我会慢慢动</h3>
</div>
</div>

<div class="animateEg">
    <button class="btn">按钮正在被连续按下</button>
</div>


</body>
</html>

预览地址:https://github.com/have-not-BUG/task/blob/master/renwu/task44/1/task44-1.html

(二)、实现如下全屏图加过渡色的效果(具体效果随意)

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        html,body{
            width: 100%;
            height: 100%;
        }
        div{
            background: url("./1.jpg") no-repeat center center ;
            background-size: cover;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
        }
        div:before{
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            display: block;
            content: "";
            width: 50%;
            background: linear-gradient(to bottom right , rgba(255,0,0,0), rgba(255,0,0,1)); /* 标准的语法(必须放在最后)*/
        }
        div:after{
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            display: block;
            content: "";
            width: 50%;
            background: linear-gradient(to bottom left, rgba(187, 61, 187,0),rgba(187, 61,187,1)); /* 标准的语法(必须放在最后)*/

        }

        
    </style>
</head>
<body>
<div>
</div>

</body>
</html>

预览地址:https://github.com/have-not-BUG/task/blob/master/renwu/task44/2/task44-2.html

(三)、写出如下 loading 动画效果

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        html,body{
            width: 100%;
            height: 100%;
        }
        *{
            margin: 0;
            padding: 0;
        }

        .bg{
            background-color: rgb(52,83,145);
            width: 100%;
            height: 100%;
            position: relative;
        }
        .loding:before,
        .loding,
        .loding:after{
            width: 20px;
            height: 40px;
            background-color: #ffffff;
            position: absolute;
        }
        .loding{
            top: 10%;
            left: 40%;
        }
        .loding:before{
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: -150%;
        }
        .loding:after{
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 100%;
            margin-left: 10px;
        }
        @keyframes myLodingFrames {
            0%,80%,100% {
                height: 40px;
                box-shadow: 0 0 #fff;
            }
            20%{
                height: 50px;
                box-shadow: 0 -20px #fff;
            }

        }
        .loding:before,
        .loding,
        .loding:after{
            -webkit-animation: myLodingFrames 1s linear  infinite   ;
                     animation: myLodingFrames 1s linear  infinite  ;
        }

        .loding{
            -webkit-animation-delay: 0.16s;
            animation-delay: 0.16s;
        }
        .loding:after{
            -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
        }


    </style>
</head>
<body>
<div class="bg">
    <div class="loding"></div>
</div>

</body>
</html>

预览地址:https://github.com/have-not-BUG/task/blob/master/renwu/task44/3/task44-3A.html

代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        html,body{
            width: 100%;
            height: 100%;
        }
        *{
            margin: 0;
            padding: 0;
        }

        .bg{
            background-color: rgb(52,83,145);
            width: 100%;
            height: 100%;
            position: relative;
        }
        .loding{
            width: 100px;
            height: 100px;
            border-top:20px solid rgba(255,255,255,0.2) ;
            border-right:20px solid rgba(255,255,255,0.2);
            border-bottom:20px solid #fff;
            border-left:20px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            position: absolute;
            top: 10%;
            left: 40%;
        }
        @keyframes myLodingFrames {
            from {transform: rotate(0deg)}
            to {transform: rotate(360deg) }
        }
        .loding{
            -webkit-animation: myLodingFrames 1s linear 1.5s infinite;
            animation: myLodingFrames 1s linear 1.5s infinite;
        }

    </style>
</head>
<body>
<div class="bg">
    <div class="loding"></div>
</div>

</body>
</html>

预览地址:https://github.com/have-not-BUG/task/blob/master/renwu/task44/3/task44-3B.html

**本文版权归本人即简书笔名:该账户已被查封 所有,如需转载请注明出处。谢谢! *

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • 1、属性选择器:id选择器 # 通过id 来选择类名选择器 . 通过类名来选择属性选择器 ...
    Yuann阅读 1,617评论 0 7
  • 一、HTML5 1.1 认识HTML5 HTML5并不仅仅只是作为HTML标记语言的一个最新版本,更重要的是它制定...
    福尔摩鸡阅读 15,741评论 14 51
  • 第3章基础知识3.1选择器CSS3新增了许多灵活查找元素的方法,极大的提高了查找元素的效率和精准度。CSS3选择器...
    Looog阅读 510评论 0 1
  • CSS3简介 CSS3的现状 浏览器支持程度差,需要添加 私有前缀 ; 移动端支持优于PC端; 不断改进中; 应用...
    magic_pill阅读 778评论 0 1
  • 之所以选择五月,是因为五月对我来说有着特殊的意义!说不出来,却那么美好……
    直行道阅读 158评论 0 0