首頁 > web前端 > html教學 > 纯css简单的警告框加抖动效果_html/css_WEB-ITnose

纯css简单的警告框加抖动效果_html/css_WEB-ITnose

WBOY
發布: 2016-06-24 11:49:12
原創
1644 人瀏覽過

这种效果的警告框,出错了会抖动

.alert-box { width: 400px; border-style: outset; position: relative; color:#555; border-radius:10px; font-family:Tahoma,Geneva,Arial,sans-serif;font-size:11px; padding:10px 10px 10px 10px; margin:auto; display: none; }      .alert-box span { font-weight:bold; text-transform:uppercase; }      .error { background:#ffecec no-repeat 10px 50%; border:1px solid #f5aca6; }
登入後複製

jQuery的动画效果,animate for循环4次左右移动

var $box = $('.alert-box');                  $box.html('<span>error: </span>' + data.error);                  $box.show();                  var box_left = ($(window).width() -  $box.width()) / 2;                  for(var i=1; 4>=i; i++){                      $box.animate({left:-(40-10*i)},50);                      $box.animate({left:+2*(40-10*i)},50);                  }
登入後複製
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板