-1
我使用wordpress中的分支指標提供的代碼來創建智能橫幅,但我無法更改橫幅的顏色,高度和位置。我還需要橫幅上的箭頭!在wordpress中是否有插件?如何在branch.io中爲android定製智能應用橫幅?
我使用wordpress中的分支指標提供的代碼來創建智能橫幅,但我無法更改橫幅的顏色,高度和位置。我還需要橫幅上的箭頭!在wordpress中是否有插件?如何在branch.io中爲android定製智能應用橫幅?
亞歷克斯從Branch.io這裏:我們目前沒有一個WordPress插件的智能橫幅,但這是一個好主意!
與此同時,我們有一個customization options您可以使用,並且您也可以將您自己的custom CSS styles應用於橫幅。
編輯
要簡單地調整橫幅的高度是有點,你必須感到,通過爲自己破解的,但你可以使用此代碼作爲出發點(從增加高度作爲示例):
<style>
#branch-banner-iframe {
height: 90px !important;
}
</style>
<script type="text/javascript">
(function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://cdn.branch.io/branch-latest.min.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"addListener applyCode banner closeBanner creditHistory credits data deepview deepviewCta first getCode init link logout redeem referrals removeListener sendSMS setIdentity track validateCode".split(" "), 0);
branch.init('key_live_xxxxxxxxxxxxxxxxxxxxx');
branch.banner({
icon: 'http://icons.iconarchive.com/icons/wineass/ios7-redesign/512/Appstore-icon.png',
title: 'Branch Demo App',
description: 'The Branch demo app!',
customCSS: '.content { height: 90px !important; } .right { height: 77px !important; padding-top: 29px !important; } .left { height: 77px !important; } #branch-banner-close { top: 21px; } #branch-banner .icon img { margin-top: 7px; }'
}, {});
</script>
但是,自定義選項不提供我選擇調整我的橫幅的選項。如果你可以提供一個我可以添加到分支提供的代碼片段,這將有所幫助! – sesha
@sesha用一些代碼編輯我的答案! –