跳到主要內容

透過 SCSS 建立圓型按鈕,鼠標在上面時有漸進漸出效果

有點時間看到透過CSS 來建立圓型按鈕,並能在 hover Event 時產生漸進漸出效果,滿簡單的就放到上面給初學朋友們 參考參考 (大神級的就請多指教)

HTML:
<div class="center">
  <a href="#">
    <div class='button'>
      <div class="button_outline"></div>
    <div class="button_background">    </div>
      BUTTON
    </div>
  </a>
</div>

CSS:
$color_blue:#3C474B;
$color_gray:#AEB5B7;
$color_white:#ffffff;

$transition:2s cubic-bezier(1,0.5, 0.7,1);

@mixin center{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

*{
  box-sizing:border-box;
}

a{
  text-decoration:none;
}

.center{
  @include center;
}

.button{
  position:relative;
  width:200px;
  height:200px;
  line-height:200px;
  text-align:center;
  font-family:helvetica;
  font-weight:bold;
  font-size:1.5em;
  letter-spacing:0.2em;
  color:red;
  transition:$transition;
}

.button_background{
  position:absolute;
  width:100%;
  height:100%;
  background: $color_blue;
  border:2px solid $color_blue;
  border-radius:50%;
  transform-origin: 50% 50%;
  transform:scale(0);
  transition:$transition;
  opacity:0;
  z-index:-1;
}

.button_outline{
  position:absolute;
  width:100%;
  height:100%;
  border:2px solid $color_blue;
  border-radius:50%;
  transform-origin:50% 50%;
  transform:scale(1);
  transition:$transition;
}

.button:hover{
  color: $color_white;
 
  .button_background{
    transform:scale(0.8);
    opacity:1;
  }
 
  .button_outline{
    transform:scale(0.8);
    opacity:1;
  }
}


留言

這個網誌中的熱門文章

C# 中 List 複製內容到另一個 List 的幾種方法

簡單又實用 ^ ^ * 第一種透過 .ToList( ) 方法:  List<string> List1 = new List<string>();  List<string> List2 = new List<string>();  List1.Add("A");  List1.Add("B");  List1.Add("C");  List1.Add("D"); List2 = List1.ToList( ); * 第二種方式在建立物件時複製前一個 List  List<string> List1 = new List<string>();  List1.Add("A");  List1.Add("B");  List1.Add("C");  List1.Add("D"); List<string> List2 = new List<string>(List1); * 第三種方法新的List 中使用 AddRange( ) 方法  List<string> List1 = new List<string>();  List<string> List2 = new List<string>();  List1.Add("A");  List1.Add("B");  List1.Add("C");  List1.Add("D"); List2.AddRange(List1); 另可使用 List1.GetRange(Start, End) 來複製不固定大小(但不包含End)的內容

無效的回傳或回呼引數。已在組態中使用 或在網頁中使用 <%@ Page EnableEventValidation="true" %> 啟用事件驗證

寫手機網頁 使用 Client 端的 jquery mobile 時 button 都會比較長,但改用 asp::Button 時發現按鈕大小卻變了,W3C 建議使用 jquery mobile Button 時,儘量使用<a href="#" data-role="button" > ,因此改用 asp::LinkButton 後果然解決了 Button 長度問題,只可惜按下去後,依然有點淚流滿面如下。後來拜求 google 大大,找到了原因及解法如下: 開啓了資料回傳安全驗證功能(EnableEventValidation 為 true),導致錯誤訊息產生。如果必須要驗證資料,則必須使用 ClientScriptManager.RegisterForEventValidation 註冊控制項或直接在頁面.aspx上端 <%Page ... EnableEventValidation = "false"> ,那如果全部頁面都不想驗證,那請在 web.config 下找到 <configuration>      <system.web>       <pages  enableEventValidation ="false" >        ....       </page>       .... </configuration> 嗯  博大精深  ^^ 收工回家去............................

JQUERY 中使用 val( ) 或 text( ) 來改變內容

就字眼看來兩者差別不太... 簡單的說 TextBox 利用 val( ),而其它的控制項元件則用 text( ) 底下範例可跑跑看或ID 對調實驗,很快就看出差別了... HTML: <input type="text" id="txtinupt" value="TEXTBOX"/> <label id="lblid">LABEL</label> <button onclick="TestFunc()">OK</button> JS: function TestFunc(){   $('#lblid').text("12345")   $('#txtinput').val("99999");   $('#lblid').focus();   console.log('Function End') }