Widget:CampaignCards
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script> var series1 = [];
var obj = {};
obj["name"] = ""; obj["image"] = ""; obj["season"] = ""; obj["color"] = ""; obj["description"] = ; obj["key"] = ""; obj["date"] = ""; obj["height"] = ""; obj["characters"] = ""; obj["playlist"] = "";
series1.push(obj);
for(var i = 0; i < series1.length; i++){
$(".campaign-holder").append('
' + series1[i].season + '
' + series1[i].name + '
' + series1[i].description + '
'+ series1[i].characters +'
| <a href="http://youtube.com/' + series1[i].playlist + '"> </a> |
');
}
$(".campaignbox-content-characters a").each(function() { var title = $(this).attr("title"); $(this).removeAttr("title");
$(this).wrap("
$(this).after("" + title + ""); });
function reset(e) { $(e.currentTarget).find("span.campaignbox-content-characters-characterbox-tooltip").hide(); }
function move(e) { $(e.currentTarget).find("span.campaignbox-content-characters-characterbox-tooltip").css("top", e.clientY + 10); $(e.currentTarget).find("span.campaignbox-content-characters-characterbox-tooltip").css("left", e.clientX + 10); $(e.currentTarget).find("span.campaignbox-content-characters-characterbox-tooltip").show(); }
function openCard(card) {
var id = $(card).parent().attr("id"); var ht = $(card).attr("data-height");
$("div.campaignbox-card").fadeOut("slow");
$("div.campaignbox").animate({width:"662px", height: ht}, function() {
$("div.campaignbox-content").show();
})
}
function closeCard(card) {
var id = $(card).parent().attr("id"); console.log(id);
$("div#.campaignbox-content").fadeOut();
$("div.campaignbox").animate({width:"200px", height:"184px"}, function() {
$("div.campaignbox-card").fadeIn("slow");
});
}
</script>
<style> .campaignbox-card {
cursor: pointer;
} .campaignbox-content-topbar-back:hover {
cursor: pointer; color: #9c6011;
}
.campaignbox-content-topbar {
width: 100%;
}
.campaignbox-content-topbar-name a {
color: inherit;
} .campaignbox {
width: 200px; border: 3px solid white; border-radius: 10px; overflow: hidden; display: inline-block; background: rgb(33, 33, 33); margin: 8px;
}
.campaignbox-image {
width: 100%; opacity:0.85; margin-bottom: -5px;
} .campaignbox-content {
padding: 10px; text-align: initial; display:none;
} .campaignbox-content-characters-characterbox-portrait {
object-fit: cover; width: 60px; height: 125px; margin-bottom: 2px;
}
.campaignbox-content-characters-characterbox {
display:inline-block;
}
.campaignbox-content-characters-characterbox-tooltip {
overflow:auto; background: rgba(33,33,33,1); border-radius:5px; border: 2px solid #8b4513; padding: 5px 8px; color: white; font-family: sans-serif; font-size: 14px; max-width: 400px; max-height: 400px; white-space:pre-line; z-index: 200; position: fixed; display: none;
} </style>


