search
HomeWeb Front-endHTML Tutorialcss3 photo wall_html/css_WEB-ITnose

The photos are scattered together. When the mouse is hovering, rotate to enlarge and straighten. The effect is as shown below (all pictures are from the Internet). The main css3 attributes used are: transition, transform (scale, rotateZ), box-shadow and z-index.

<!DOCTYPE html><html>    <head>        <meta charset="UTF-8">        <title></title>        <style>            *{margin:0;padding:0;}            html,body{background:#eee;}                        /*设置场景居中*/            .wall{width:1000px;height:700px;position:fixed;top:50%;margin-top:-350px;left:50%;margin-left:-500px;}                        /*设置图片绝对定位,方便设置放置的位置,并设置所有属性的过渡时间为0.2s*/            img{position:absolute;display:block;max-width:300px;max-height:300px;padding:10px 10px 20px;background:#fff;border:1px solid #ddd;-webkit-transition:0.2s;}                        /*鼠标悬浮时设置大小放大到1.2倍,并摆正,即Z轴方向的旋转角度为0*/            img:hover{-webkit-transform:scale(1.2) rotateZ(0);box-shadow:10px 10px 5px #555;z-index:2;}                        /*设置每个照片的位置和旋转角度*/            .img1{left:0;top:0;-webkit-transform:rotateZ(20deg);}            .img2{left:280px;top:0;-webkit-transform:rotateZ(5deg);}            .img3{left:470px;top:0;-webkit-transform:rotateZ(-10deg);}            .img4{left:720px;top:0;-webkit-transform:rotateZ(25deg);}            .img5{left:220px;top:200px;-webkit-transform:rotateZ(-2deg);}            .img6{left:830px;top:240px;-webkit-transform:rotateZ(-15deg);}            .img7{left:490px;top:190px;-webkit-transform:rotateZ(5deg);}            .img8{left:80px;top:430px;-webkit-transform:rotateZ(-5deg);}            .img9{left:290px;top:450px;-webkit-transform:rotateZ(5deg);}            .img10{left:510px;top:380px;-webkit-transform:rotateZ(-10deg);}            .img11{left:760px;top:500px;-webkit-transform:rotateZ(10deg);}            .img12{left:-100px;top:250px;-webkit-transform:rotateZ(-5deg);}        </style>    </head>    <body>        <div class="wall">            <img class="img1 lazy"  src="/static/imghwm/default1.png"  data-src="http://mp1.zhuqu.com/static/images/thb3/611/29/29a5296418b9f689968b22d3a9ebba07.jpg"  alt=""/>            <img class="img2 lazy"  src="/static/imghwm/default1.png"  data-src="http://h.hiphotos.baidu.com/image/pic/item/63d9f2d3572c11df1e33e52a612762d0f603c2dd.jpg"  alt=""/>            <img class="img3 lazy"  src="/static/imghwm/default1.png"  data-src="http://h.hiphotos.baidu.com/image/pic/item/4d086e061d950a7bdd523bb808d162d9f2d3c963.jpg"  alt=""/>            <img class="img4 lazy"  src="/static/imghwm/default1.png"  data-src="http://f.hiphotos.baidu.com/image/pic/item/c9fcc3cec3fdfc031f73ebc4d63f8794a4c22646.jpg"  alt=""/>            <img class="img5 lazy"  src="/static/imghwm/default1.png"  data-src="http://e.hiphotos.baidu.com/image/pic/item/902397dda144ad348d0a25fbd2a20cf431ad8511.jpg"  alt=""/>            <img class="img6 lazy"  src="/static/imghwm/default1.png"  data-src="http://a.hiphotos.baidu.com/image/pic/item/b03533fa828ba61ed8c6c2534334970a304e59a5.jpg"  alt=""/>            <img class="img7 lazy"  src="/static/imghwm/default1.png"  data-src="http://h.hiphotos.baidu.com/image/pic/item/d4628535e5dde711d794368aa5efce1b9d166103.jpg"  alt=""/>            <img class="img8 lazy"  src="/static/imghwm/default1.png"  data-src="http://h.hiphotos.baidu.com/image/pic/item/9213b07eca8065382b38ae6f95dda144ac3482ff.jpg"  alt=""/>            <img class="img9 lazy"  src="/static/imghwm/default1.png"  data-src="http://d.hiphotos.baidu.com/image/pic/item/bd315c6034a85edfd6938b5f4b540923dd5475aa.jpg"  alt=""/>            <img class="img10 lazy"  src="/static/imghwm/default1.png"  data-src="http://e.hiphotos.baidu.com/image/pic/item/c995d143ad4bd113df57bd4e58afa40f4bfb0537.jpg"  alt=""/>            <img class="img11 lazy"  src="/static/imghwm/default1.png"  data-src="http://e.hiphotos.baidu.com/image/pic/item/7c1ed21b0ef41bd5c98ab2fd53da81cb38db3dd9.jpg"  alt=""/>            <img class="img12 lazy"  src="/static/imghwm/default1.png"  data-src="http://c.hiphotos.baidu.com/image/pic/item/37d12f2eb9389b500dd0952e8735e5dde7116e9a.jpg"  alt=""/>        </div>    </body></html>

This example is only compatible with browsers with webkit core. To be compatible with browsers with other cores, you need to add other prefixes (-moz-, - o-etc.).

In addition, the positive and negative directions of the rotateZ attribute used in this example often confuse people. In a 3D scene, the positive direction of the X-axis is horizontally to the right, and the positive direction of the Y-axis is vertically downward. The positive direction of the Z-axis is perpendicular to the screen and outward. After determining the positive direction, you only need to remember the following rules: starting from the coordinate origin, looking towards the positive direction of the coordinate axis, rotate counterclockwise rotate(X/Y/Z ) is a positive number, and when rotating clockwise, the value of rotate(X/Y/Z) is a negative number.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the difference between an HTML tag and an HTML attribute?What is the difference between an HTML tag and an HTML attribute?May 14, 2025 am 12:01 AM

HTMLtagsdefinethestructureofawebpage,whileattributesaddfunctionalityanddetails.1)Tagslike,,andoutlinethecontent'splacement.2)Attributessuchassrc,class,andstyleenhancetagsbyspecifyingimagesources,styling,andmore,improvingfunctionalityandappearance.

The Future of HTML: Evolution and TrendsThe Future of HTML: Evolution and TrendsMay 13, 2025 am 12:01 AM

The future of HTML will develop in a more semantic, functional and modular direction. 1) Semanticization will make the tag describe the content more clearly, improving SEO and barrier-free access. 2) Functionalization will introduce new elements and attributes to meet user needs. 3) Modularity will support component development and improve code reusability.

Why are HTML attributes important for web development?Why are HTML attributes important for web development?May 12, 2025 am 12:01 AM

HTMLattributesarecrucialinwebdevelopmentforcontrollingbehavior,appearance,andfunctionality.Theyenhanceinteractivity,accessibility,andSEO.Forexample,thesrcattributeintagsimpactsSEO,whileonclickintagsaddsinteractivity.Touseattributeseffectively:1)Usese

What is the purpose of the alt attribute? Why is it important?What is the purpose of the alt attribute? Why is it important?May 11, 2025 am 12:01 AM

The alt attribute is an important part of the tag in HTML and is used to provide alternative text for images. 1. When the image cannot be loaded, the text in the alt attribute will be displayed to improve the user experience. 2. Screen readers use the alt attribute to help visually impaired users understand the content of the picture. 3. Search engines index text in the alt attribute to improve the SEO ranking of web pages.

HTML, CSS, and JavaScript: Examples and Practical ApplicationsHTML, CSS, and JavaScript: Examples and Practical ApplicationsMay 09, 2025 am 12:01 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML is used to build web page structure; 2. CSS is used to beautify the appearance of web pages; 3. JavaScript is used to achieve dynamic interaction. Through tags, styles and scripts, these three together build the core functions of modern web pages.

How do you set the lang attribute on the  tag? Why is this important?How do you set the lang attribute on the tag? Why is this important?May 08, 2025 am 12:03 AM

Setting the lang attributes of a tag is a key step in optimizing web accessibility and SEO. 1) Set the lang attribute in the tag, such as. 2) In multilingual content, set lang attributes for different language parts, such as. 3) Use language codes that comply with ISO639-1 standards, such as "en", "fr", "zh", etc. Correctly setting the lang attribute can improve the accessibility of web pages and search engine rankings.

What is the purpose of HTML attributes?What is the purpose of HTML attributes?May 07, 2025 am 12:01 AM

HTMLattributesareessentialforenhancingwebelements'functionalityandappearance.Theyaddinformationtodefinebehavior,appearance,andinteraction,makingwebsitesinteractive,responsive,andvisuallyappealing.Attributeslikesrc,href,class,type,anddisabledtransform

How do you create a list in HTML?How do you create a list in HTML?May 06, 2025 am 12:01 AM

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.