AstonJ
(AstonJ)
2016 年 2 月 10 日午後 2:39
1
Is it possible to (via a plug-in if necessary) randomly choose a logo (and small logo) from a set of 3 every time someone starts a new session (or until their browser refreshes the assets for the logo)?
The Ruby code is trivial - but how can we incorporate that into Discourse?
You could do it with JS i suppose, here is code i hope it works
<script>
if (document.getElementById) { window.onload = swap };
function swap() {
var numimages=4;
rndimg = new Array("IMAGE URL 1", "IMAGE URL 2", "IMAGE URL 3", "IMAGE URL 4");
x=(Math.floor(Math.random()*numimages));
randomimage=(rndimg[x]);
document.getElementById("banner").style.logo-big = "url("+ randomimage +")";
}
</script>
PS this only works on hard refresh . also the css to big logo would be
.logo-big {
background-image: url('DEFAULT LOGO IMAGE URL HERE');
}
The JS would work because i am using that to rotate my banner image randomly on every hard refresh not sure the exact code for logo CSS.
AstonJ
(AstonJ)
2016 年 2 月 10 日午後 5:51
3
Thanks - I’ll give that a go
Hi,
This is exactly what I need! Is the second part required? Also where does the first part get put exactly?
Best,
Michael
sam
(Sam Saffron)
2019 年 5 月 6 日午前 7:39
6
This is doable in a theme component, the method by @Alankrit_Choudh can work but I would recommend adding a custom ember initializer instead that overrides the URL in discourse instead of relying on window.onload here.
Gunnar
(Gunnar Helliesen)
2021 年 6 月 10 日午前 4:52
7
Sam さん、
私も同じ問題に直面しました。window.onload は <head> タグの前に呼び出されれば機能しますが、それ以降では機能しません。そのため、document.getElementById が失敗してしまいます(ID がまだ定義されていないため)。
Ember の経験がない人向けに、カスタム Ember イニシャライザーを作成する方法を解説した入門記事や例、手順を教えてください。
参考までに、私が行おうとしているのは、URL の配列からランダムなバナー画像を表示することです。
var jlmyPix = new Array(
'/img/pic0.jpeg',
[ ... ]
'/img/picN.jpeg'
);
function jlchoosePic() {
var jlrandomPicNum = Math.floor(Math.random() * jlmyPix.length);
document.getElementById("jlmyPicture").src = jlmyPix[jlrandomPicNum];
};
window.onload = jlchoosePic;