Skip to content

Commit

Permalink
https: fix can't show https img
Browse files Browse the repository at this point in the history
  • Loading branch information
alomerry.wu committed Jul 10, 2020
1 parent 4172b3b commit 4352b9d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ public static function config(Typecho_Widget_Helper_Form $form)
$heatBeat = new Typecho_Widget_Helper_Form_Element_Radio('heatBeat',array(
'open' => _t('开启'),
'close' => _t('关闭'),
),'open', '',"<img src='https://alomerry.com/usr/uploads/2020/01/673845452.gif' style='width: 7rem;'>");
),'open', '',"<img src='http://alomerry.com/usr/uploads/2020/01/673845452.gif' style='width: 7rem;'>");
$form->addInput($heatBeat);

//星星轨迹特效
$form->addInput(new ExTitle_Plugin('btnTitle', NULL, NULL, _t('星星轨迹特效'), NULL));
$starTrack = new Typecho_Widget_Helper_Form_Element_Radio('starTrack',array(
'open' => _t('开启'),
'close' => _t('关闭'),
),'open', '',"<img src='https://alomerry.com/usr/uploads/2020/01/286602434.gif' style='width: 30rem;'>");
),'open', '',"<img src='http://alomerry.com/usr/uploads/2020/01/286602434.gif' style='width: 30rem;'>");
$form->addInput($starTrack);

// $form->addInput(new ExTitle_Plugin('btnTitle', NULL, NULL, _t('炫光鼠标特效'), NULL));
Expand All @@ -97,7 +97,7 @@ public static function config(Typecho_Widget_Helper_Form $form)
$footStyle = new Typecho_Widget_Helper_Form_Element_Radio('footStyle',array(
'open' => _t('开启'),
'close' => _t('关闭'),
),'open','',"<img src='https://alomerry.com/usr/uploads/2020/01/2908048897.png' style='width: 30rem;'>");
),'open','',"<img src='http://alomerry.com/usr/uploads/2020/01/2908048897.png' style='width: 30rem;'>");
$form->addInput($footStyle);
$footCSS = new Typecho_Widget_Helper_Form_Element_Select("footCSS",array(
"github-badge.css" => "github-badge.css",
Expand All @@ -111,7 +111,7 @@ public static function config(Typecho_Widget_Helper_Form $form)
'open' => _t('开启'),
'close' => _t('关闭'),
), 'open',_t('修改 ribbon.js 可以调整彩带参数、位置和样式。'),
"<img src='https://alomerry.com/usr/uploads/2020/01/499543144.gif' style='width: 30rem;'>");
"<img src='http://alomerry.com/usr/uploads/2020/01/499543144.gif' style='width: 30rem;'>");
$form->addInput($backgroundRibbon);

//首页头像 hover 旋转
Expand All @@ -120,7 +120,7 @@ public static function config(Typecho_Widget_Helper_Form $form)
'open' => _t('开启'),
'close' => _t('关闭'),
), 'open',_t(''),
"<img src='https://alomerry.com/usr/uploads/2020/01/3441578448.gif' style='width: 30rem;'>");
"<img src='http://alomerry.com/usr/uploads/2020/01/3441578448.gif' style='width: 30rem;'>");
$form->addInput($headSpin);

//评论打字机特效
Expand Down

0 comments on commit 4352b9d

Please sign in to comment.