時(shí)間:2023-10-06 08:18:01 | 來源:網(wǎng)站運(yùn)營
時(shí)間:2023-10-06 08:18:01 來源:網(wǎng)站運(yùn)營
html+css技能,制作書本翻頁效果:<div class="shu"> <div class="feng"></div> <div class="wen"> <h3 style="padding-top: 50px;padding-left: 40px;">Life of Pi</h3> <p style=" padding-top: 20px; padding-left: 40px;padding-right: 15px;"> He lives in Scarborough. He's a small, slim man – nomore than five foot five. Dark hair, dark eyes. Hair greyingat the temples. Can't be older than forty. leasingcoffee-coloured complexion1. Mild fall weather, yet puts on abig winter parka with fur-lined hood2 for the walk to thediner. </p> </div> </div>
.shu{ position: relative; width: 300px; height: 400px; background-color: rgba(255, 255, 255, 0.774); transform-style: preserve-3d; box-shadow: 300px 0px 30px rgb(0, 0, 0,.6) inset; transition: 1s cubic-bezier(.79,.34,.47,.92); } .shu::after{ content: ''; position: absolute; height: 3px; width: 303px; left: 0px; bottom: -3px; /* background-color: rgb(100, 96, 96); */ background-image: linear-gradient(to right,rgb(71, 68, 68),rgba(124, 120, 120, 0.3) ); border-bottom-left-radius: 5px; } .shu::before{ content: ''; position: absolute; width: 3px; height: 100%; right: -3px; top: 0px; background-color: rgb(112, 108, 108); background-image: linear-gradient(to top,rgb(114, 111, 111),rgba(90, 87, 87, 0.5) );; border-top-right-radius: 3px; }
transition: 1s cubic-bezier(.79,.34,.47,.92); 變化時(shí)間為1s,運(yùn)動曲線為 cubic-bezier(.79,.34,.47,.92),這個(gè)可以去一個(gè)網(wǎng)站自定義生成:點(diǎn)我。.shu:hover{ box-shadow: 30px 0px 30px rgb(0, 0, 0,.6) inset; transform: rotate(-5deg); }
transform: rotate(-5deg);旋轉(zhuǎn);.feng{ position: absolute; width: 100%; height: 100%; z-index: 2; background-image: url(4.jpg); background-size: 100% ; transform-origin: left; transition: 1s cubic-bezier(.79,.34,.47,.92); border-top-left-radius: 2px; border-bottom-left-radius: 2px; }
transform-origin: left; 封面旋轉(zhuǎn)的位置,旋轉(zhuǎn)點(diǎn).shu:hover .feng{ transform: rotateY(-140deg); }
.wen{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; font-family: 'fangsong'; text-align: left; }
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> *{ margin: 0; padding: 0; box-sizing: border-box; } body{ height: 100vh; background-image: radial-gradient(white,black); display: flex; justify-content: center; align-items: center; } .shu{ position: relative; width: 300px; height: 400px; background-color: rgba(255, 255, 255, 0.774); transform-style: preserve-3d; box-shadow: 300px 0px 30px rgb(0, 0, 0,.6) inset; transition: 1s cubic-bezier(.79,.34,.47,.92); } .shu::after{ content: ''; position: absolute; height: 3px; width: 303px; left: 0px; bottom: -3px; /* background-color: rgb(100, 96, 96); */ background-image: linear-gradient(to right,rgb(71, 68, 68),rgba(124, 120, 120, 0.3) ); border-bottom-left-radius: 5px; } .shu::before{ content: ''; position: absolute; width: 3px; height: 100%; right: -3px; top: 0px; background-color: rgb(112, 108, 108); background-image: linear-gradient(to top,rgb(114, 111, 111),rgba(90, 87, 87, 0.5) );; border-top-right-radius: 3px; } .shu:hover{ box-shadow: 30px 0px 30px rgb(0, 0, 0,.6) inset; transform: rotate(-5deg); } .feng{ position: absolute; width: 100%; height: 100%; z-index: 2; background-image: url(4.jpg); background-size: 100% ; transform-origin: left; transition: 1s cubic-bezier(.79,.34,.47,.92); border-top-left-radius: 2px; border-bottom-left-radius: 2px; } .shu:hover .feng{ transform: rotateY(-140deg); } .wen{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; font-family: 'fangsong'; text-align: left; } </style></head><body> <div class="shu"> <div class="feng"></div> <div class="wen"> <h3 style="padding-top: 50px;padding-left: 40px;">Life of Pi</h3> <p style=" padding-top: 20px; padding-left: 40px;padding-right: 15px;"> He lives in Scarborough. He's a small, slim man – nomore than five foot five. Dark hair, dark eyes. Hair greyingat the temples. Can't be older than forty. leasingcoffee-coloured complexion1. Mild fall weather, yet puts on abig winter parka with fur-lined hood2 for the walk to thediner. </p> </div> </div></body></html>
1.認(rèn)知基礎(chǔ)課程2. java入門階段3. 面向?qū)ο缶幊?. 飛機(jī)小項(xiàng)目5. 面向?qū)ο蠛蛿?shù)組6. 常用類7. 異常機(jī)制8. 容器和數(shù)據(jù)結(jié)構(gòu)9. IO流技術(shù)10. 多線程11. 網(wǎng)絡(luò)編程12. 手寫服務(wù)器13. 注解和反射14. GOF23種設(shè)計(jì)模式15. 正則表達(dá)式16. JDBC數(shù)據(jù)庫操作17. 手寫SORM框架18. JAVA10新特性19.數(shù)據(jù)結(jié)構(gòu)和算法20. JVM虛擬機(jī)講解21. XML技術(shù)解析第2階段:數(shù)據(jù)庫開發(fā)全套課程
1.Oracle和SQL語言2.Mysql快速使用3.PowerDesigner使用4.JDBC數(shù)據(jù)庫5.Mysql優(yōu)化6.oracle深度講解第3階段:網(wǎng)頁開發(fā)和設(shè)計(jì)
1.HTML基礎(chǔ)2.CSS基礎(chǔ)3.JavaScript編程4.jQuery5.easyUI第4階段:Servlet和JSP實(shí)戰(zhàn)深入課程
1.Servlet入門和Tomcat2.request和response對象3.轉(zhuǎn)發(fā)和重定向_Cookie4.session_Context對象5.JSP6.用戶管理系統(tǒng)7.Ajax技術(shù)8.EL和JSTL標(biāo)簽庫9.過濾器10.監(jiān)聽器第5階段:高級框架階段
1.Mybatis2.Spring3.Spring MVC4.SSM框架整合5.RBAC權(quán)限控制項(xiàng)目6.Hibernate37.Hibernate48.jFinal9.Shiro安全框架10.Solr搜索框架11.Struts212.Nginx服務(wù)器13.Redis緩存技術(shù)14.JVM虛擬機(jī)優(yōu)化15.Zookeeper第6階段:微服務(wù)架構(gòu)階段
1.Spring Boot2.Spring Data3.Spring Cloud第7階段:互聯(lián)網(wǎng)架構(gòu)階段
1.Linux系統(tǒng)2.Maven技術(shù)3.Git4.SVN5.高并發(fā)編程6.系統(tǒng)和虛擬機(jī)調(diào)優(yōu)7.JAVA編程規(guī)范8.高級網(wǎng)絡(luò)編程9.Netty框架10.ActiveMQ消息中間件11.單點(diǎn)登錄SSO12.數(shù)據(jù)庫和SQL優(yōu)化13.數(shù)據(jù)庫集群和高并發(fā)14.Dubbo15.Redis16.VSFTPD+NGINX第8階段:分布式億級高并發(fā)電商項(xiàng)目
1.基于SOA架構(gòu)介紹2.VSFTPD和Nginx和商品新增3.商品規(guī)格參數(shù)管理4.Jsonp5.CMS模塊6.廣告位數(shù)據(jù)緩存7.SolrJ和SolrCloud8.商品搜索9.商品詳情10.單點(diǎn)登錄11.購物車12.訂單系統(tǒng)13.分庫和分表14.分布式部署第9階段:畢設(shè)項(xiàng)目第1季
1. 電子政務(wù)網(wǎng)2. 企業(yè)合同管理系統(tǒng)3. 健康管理系統(tǒng)4. 商品供應(yīng)管理系統(tǒng)5. 土地檔案管理系統(tǒng)6. 聊天室設(shè)計(jì)和實(shí)現(xiàn)7. 碼頭配套和貨柜管理系統(tǒng)8. 百貨中心供應(yīng)鏈系統(tǒng)9. 病歷管理系統(tǒng)10. 超市積分管理系統(tǒng)11. 動漫論壇12. 俄羅斯方塊13. 個(gè)人博客系統(tǒng)14. 固定資產(chǎn)管理系統(tǒng)15. 影視創(chuàng)作論壇16. 屏幕截圖工具17. 超級瑪麗游戲18. 飛機(jī)大戰(zhàn)游戲19. 雷電第10階段:畢設(shè)項(xiàng)目第2季
1. 微博系統(tǒng)2. 寫字板3. 坦克大戰(zhàn)4. 推箱子5. 電腦彩票系統(tǒng)6. 記賬管理系統(tǒng)7. 新聞發(fā)布系統(tǒng)8. 醫(yī)院掛號系統(tǒng)9. 倉庫管理系統(tǒng)10. 停車場管理系統(tǒng)11. 網(wǎng)絡(luò)爬蟲12. 酒店管理系統(tǒng)13. 企業(yè)財(cái)務(wù)管理系統(tǒng)14. 車輛管理系統(tǒng)15. 員工信息管理系統(tǒng)16. 旅游網(wǎng)站17. 搜索引擎18. 進(jìn)銷存管理系統(tǒng)19. 在線考試系統(tǒng)20. 物流信息網(wǎng)21. 住院管理系統(tǒng)22. 銀行柜員業(yè)務(wù)績效系統(tǒng)
關(guān)鍵詞:效果,書本,技能
客戶&案例
營銷資訊
關(guān)于我們
微信公眾號
版權(quán)所有? 億企邦 1997-2025 保留一切法律許可權(quán)利。