我想在用户在deepview网站上输入他们的号码时自定义发送给用户的文本以下载应用程序。是否可以更改该内容?
答案 0 :(得分:0)
Alex和Branch.io在这里:你可以做到这一点!它有点埋没在我们的文档网站上,但有两种选择:
/* ---------------------------------------------------
Banner
--------------------------------------------------- */
#banner a#main {
background-image:
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt1.png'),
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt2.png'),
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt3.png');
background-size: contain;
color: #E1E0DC;
}
#banner a#main .content {
-webkit-animation: bannerRotation 12s cubic-bezier(1, 0, 0.7, 0) forwards;
background-image:
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt1.png'),
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt2.png'),
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt3.png');
background-size: contain;
}
@-webkit-keyframes bannerRotation {
0% {
background-image:
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt1.png');
} 33.3%, 66.6% {
background-image:
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt2.png');
} 66.6%, 100% {
background-image:
url('../images/Animation-rotations/Beer/320x50/320x50_2x_rt3.png');
}
}
控制参数逐个链接设置内容。阅读它here。