css3中可以实现动画效果,主要是通过css3中新增加的属性(transform , transition,animation )来完成。
他们的详细解释可以参考 W3CSCHOOL
下面是效果图:
类似于tab选项卡,当点击某个input的时候,就以动画的效果来显示对应的内容区域。
Html代码
- body{
- overflow: hidden;
- }
- .st-container {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- font-family: Arial, sans-serif;
- }
- /*put the “navigation” at the top of the page by giving it a fixed position*/
- .st-container > input,
- .st-container > a {
- position: fixed;
- top: 0;
- width: 20%;
- cursor: pointer;
- font-size: 16px;
- height: 34px;
- line-height: 34px;
- }
- .st-container > input {
- opacity: 0;
- z-index: 1000;
- }
- .st-container > a {
- z-index: 10;
- font-weight: 700;
- background: #e23a6e;
- color: #fff;
- text-align: center;
- text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
- text-decoration: none;
- }
- /*It will have the same background color like the link elements:*/
- .st-container:after {
- content: '';
- position: fixed;
- width: 100%;
- height: 34px;
- background: #e23a6e;
- z-index: 9;
- top: 0;
- }
- /*give input and links respective left values*/
- #st-control-1, #st-control-1 + a {
- left: 0;
- }
- #st-control-2, #st-control-2 + a {
- left: 20%;
- }
- #st-control-3, #st-control-3 + a {
- left: 40%;
- }
- #st-control-4, #st-control-4 + a {
- left: 60%;
- }
- #st-control-5, #st-control-5 + a {
- left: 80%;
- }
- /*define a “selected” state for the link elements.*/
- .st-container > input:checked + a,
- .st-container > input:checked:hover + a{
- background: #821134;
- }
- /*add a little triangle using the pseudo-class :after and give it the same color:*/
- .st-container > input:checked + a:after,
- .st-container > input:checked:hover + a:after{
- top: 100%;
- border: solid transparent;
- content: '';
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- border-top-color: #821134;
- border-width: 20px;
- left: 50%;
- margin-left: -20px;
- }
- /*define a hover state for the link element:*/
- .st-container > input:hover + a{
- background: #AD244F;
- }
- .st-container > input:hover + a:after {
- border-bottom-color: #AD244F;
- }
- /*define scroll panel style*/
- .st-scroll,
- .st-panel {
- position: relative;
- width: 100%;
- height: 100%;
- }
- .st-scroll {
- top: 0;
- left: 0;
- -webkit-transition: all 0.6s ease-in-out;
- /* Let's enforce some hardware acceleration */
- -webkit-transform: translate3d(0, 0, 0);
- -webkit-backface-visibility: hidden;
- border: solid 1px #ccc;
- }
- .st-panel{
- background: #fff;
- overflow: hidden;
- }
- /**define the positions for the st-scroll wrapper for each checked radio button*/
- #st-control-1:checked ~ .st-scroll {
- -webkit-transform: translateY(0%);
- background-color: green;
- }
- #st-control-2:checked ~ .st-scroll {
- -webkit-transform: translateY(-100%);
- background-color: green;
- }
- #st-control-3:checked ~ .st-scroll {
- -webkit-transform: translateY(-200%);
- background-color: green;
- }
- #st-control-4:checked ~ .st-scroll {
- -webkit-transform: translateY(-300%);
- background-color: green;
- }
- #st-control-5:checked ~ .st-scroll {
- -webkit-transform: translateY(-400%);
- background-color: green;
- }
- #st-control-1:checked ~ .st-scroll #st-panel-1 h2,
- #st-control-2:checked ~ .st-scroll #st-panel-2 h2,
- #st-control-3:checked ~ .st-scroll #st-panel-3 h2,
- #st-control-4:checked ~ .st-scroll #st-panel-4 h2,
- #st-control-5:checked ~ .st-scroll #st-panel-5 h2{
- -webkit-animation: moveDown 1.6s ease-in-out 1.2s backwards;
- }
- /** define animation for the scroll panel*/
- @keyframes moveDown{
- 0% {
- -webkit-transform: translateY(-40px);
- opacity: 0;
- }
- 100% {
- -webkit-transform: translateY(0px);
- opacity: 1;
- }
- }
- .st-panel h2 {
- color: #e23a6e;
- text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
- position: absolute;
- font-size: 54px;
- font-weight: 900;
- width: 80%;
- left: 10%;
- text-align: center;
- line-height: 50px;
- margin: -70px 0 0 0;
- padding: 0;
- top: 50%;
- -webkit-backface-visibility: hidden;
- }
- .st-panel p {
- position: absolute;
- text-align: center;
- font-size: 16px;
- line-height: 22px;
- color: #8b8b8b;
- z-index: 2;
- padding: 0;
- width: 50%;
- left: 25%;
- top: 50%;
- margin: 10px 0 0 0;
- -webkit-backface-visibility: hidden;
- }
-
- Serendipity
- Happiness
- Tranquillity
- Positivity
- Passion
Serendipity
Banksy adipisicing eiusmod banh mi sed. Squid stumptown est odd future nisi, commodo mlkshk pop-up adipisicing retro.
Happiness
Art party readymade beard labore cosby sweater culpa. Art party whatever incididunt, scenester umami polaroid tofu.
Tranquillity
Sint aute occaecat id vice. Post-ironic fap pork belly next level godard, id fanny pack williamsburg forage truffaut.
Positivity
Mixtape fap leggings art party, butcher authentic farm-to-table you probably haven't heard of them do labore cosby sweater.
Passion
Fixie ad odd future polaroid dreamcatcher, nesciunt carles bicycle rights accusamus mcsweeney's mumblecore nulla irony.

WebDevelovermentReliesonHtml,CSS和JavaScript:1)HTMLStructuresContent,2)CSSStyleSIT和3)JavaScriptAddSstractivity,形成thebasisofmodernWebemodernWebExexperiences。

HTML的作用是通過標籤和屬性定義網頁的結構和內容。 1.HTML通過到、等標籤組織內容,使其易於閱讀和理解。 2.使用語義化標籤如、等增強可訪問性和SEO。 3.優化HTML代碼可以提高網頁加載速度和用戶體驗。

htmlisaspecifictypefodyfocusedonstructuringwebcontent,而“代碼” badlyLyCludEslanguagesLikeLikejavascriptandPytyPythonForFunctionality.1)htmldefineswebpagertuctureduseTags.2)“代碼”代碼“ code” code code code codeSpassSesseseseseseseseAwiderRangeLangeLangeforLageforLogageforLogicIctInterract

HTML、CSS和JavaScript是Web開發的三大支柱。 1.HTML定義網頁結構,使用標籤如、等。 2.CSS控製網頁樣式,使用選擇器和屬性如color、font-size等。 3.JavaScript實現動態效果和交互,通過事件監聽和DOM操作。

HTML定義網頁結構,CSS負責樣式和佈局,JavaScript賦予動態交互。三者在網頁開發中各司其職,共同構建豐富多彩的網站。

HTML適合初學者學習,因為它簡單易學且能快速看到成果。 1)HTML的學習曲線平緩,易於上手。 2)只需掌握基本標籤即可開始創建網頁。 3)靈活性高,可與CSS和JavaScript結合使用。 4)豐富的學習資源和現代工具支持學習過程。

AnexampleOfAstartingTaginHtmlis,beginSaparagraph.startingTagSareEssentialInhtmlastheyInitiateEllements,defiteTheeTheErtypes,andarecrucialforsstructuringwebpages wepages webpages andConstructingthedom。

如何設計菜單中的虛線分割效果?在設計菜單時,菜名和價格的左右對齊通常不難實現,但中間的虛線或點如何...


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Atom編輯器mac版下載
最受歡迎的的開源編輯器

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能

SecLists
SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。