使用css3怎么實現(xiàn)一個魔方3d效果 ?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
為河南等地區(qū)用戶提供了全套網(wǎng)頁設計制作服務,及河南網(wǎng)站建設行業(yè)解決方案。主營業(yè)務為做網(wǎng)站、網(wǎng)站設計、河南網(wǎng)站設計,以傳統(tǒng)方式定制建設網(wǎng)站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!css是一種用來表現(xiàn)HTML或XML等文件樣式的計算機語言,主要是用來設計網(wǎng)頁的樣式,使網(wǎng)頁更加美化。它也是一種定義樣式結構如字體、顏色、位置等的語言,并且css樣式可以直接存儲于HTML網(wǎng)頁或者單獨的樣式單文件中,而樣式規(guī)則的優(yōu)先級由css根據(jù)這個層次結構決定,從而實現(xiàn)級聯(lián)效果,發(fā)展至今,css不僅能裝飾網(wǎng)頁,也可以配合各種腳本對于網(wǎng)頁進行格式化。
html:
<div class="container"> <div class="box defaul"> <div class="pic"><img src="./img/cat.jpg" alt=""></div> <div class="pic"><img src="./img/dog.jpg" alt=""></div> <div class="pic"><img src="./img/elephant.jpg" alt=""></div> <div class="pic"><img src="./img/lion.jpg" alt=""></div> <div class="pic"><img src="./img/rabbit.jpg" alt=""></div> <div class="pic"><img src="./img/monkey.jpg" alt=""></div> </div> </div> <h2>點擊下面的圖片按鈕切換</h2> <div class="btn"> <input type="image" class="1" src="./img/cat.jpg"> <input type="image" class="2" src="./img/dog.jpg"> <input type="image" class="3" src="./img/elephant.jpg"> <input type="image" class="4" src="./img/lion.jpg"> <input type="image" class="5" src="./img/rabbit.jpg"> <input type="image" class="6" src="./img/monkey.jpg"> </div>
css:
* { margin: 0; padding: 0; } html, body { width: 100%; height: 100%; background: #66677c; text-align: center; } .container { width: 300px; height: 300px; margin: 50px auto 150px; perspective: 1200px; } .container .box { width: 300px; height: 300px; position: relative; transform-style: preserve-3d; transition: transform 0.5s; } .container .box .pic { position: absolute; left: 0; top: 0; width: 300px; height: 300px; box-shadow: 0px 0px 5px #fff; } .container .box .pic img { width: 100%; height: 100%; cursor: pointer; } .container .box .pic:nth-child(1) { transform: translateZ(150px); } .container .box .pic:nth-child(2) { transform: rotateY(-180deg) translateZ(150px); } .container .box .pic:nth-child(3) { transform: rotateY(90deg) translateZ(150px); } .container .box .pic:nth-child(4) { transform: rotateY(-90deg) translateZ(150px); } .container .box .pic:nth-child(5) { transform: rotateX(90deg) translateZ(150px); } .container .box .pic:nth-child(6) { transform: rotateX(-90deg) translateZ(150px); } h2 { color: #fff; font-size: 30px; margin-bottom: 30px; } .btn { display: grid; justify-content: center; grid-template-columns: 100px 100px 100px; grid-template-rows: 100px 100px; grid-gap: 15px; } .btn input { width: 100px; height: 100px; outline: none; border: 2px solid #fff; } .btn input:focus { border: 2px solid #e70; } .defaul { transform: translateZ(-150px) rotateX(-10deg) rotateY(15deg); } .image1 { transform: translateZ(-150px) rotateX(0deg) rotateY(0deg); } .image2 { transform: translateZ(-150px) rotateY(-180deg); } .image3 { transform: translateZ(-150px) rotateY(-90deg); } .image4 { transform: translateZ(-150px) rotateY(90deg); } .image5 { transform: translateZ(-150px) rotateX(-90deg); } .image6 { transform: translateZ(-150px) rotateX(90deg); }
js:
(function(){ var btn = document.getElementsByClassName('btn')[0]; var box = document.getElementsByClassName('box')[0]; btn.addEventListener('click',function(e){ var className = e.target.className; if(className !== 'btn'){ box.style = ''; box.classList.replace(box.classList[1],'image'+className); } }) //鼠標拖動效果 var xN = 10, yN = 15; document.addEventListener('mousedown',function(e){ e.preventDefault(); e.stopPropagation(); var x = e.clientX; var y = e.clientY; document.addEventListener('mousemove',move); document.addEventListener('mouseup', up); function move(e){ e.preventDefault(); e.stopPropagation(); var x1 = e.clientX; var y1 = e.clientY; xN += (x1 - x)*0.04; yN += (y1 - y)*0.04; box.style.transform = 'translateZ(-150px) rotateY(' + xN + 'deg) rotateX(' + -yN + 'deg)'; } function up(){ document.removeEventListener('mousemove', move); } }) })()
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設公司,的支持。
標題名稱:使用css3怎么實現(xiàn)一個魔方3d效果-創(chuàng)新互聯(lián)
分享網(wǎng)址:http://jinyejixie.com/article32/coigsc.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供移動網(wǎng)站建設、面包屑導航、服務器托管、網(wǎng)站排名、網(wǎng)站改版、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內容