Skip to content

1.1.2 Yandex CSS styles

Compare
Choose a tag to compare
@sergeysinyavsky sergeysinyavsky released this 05 Jan 16:13
· 11 commits to main since this release

Added the ability to set css styles when creating, showing and hiding banners.

local yandex_net_id = ads_wrapper.register_network(yandex, {
    [ads_wrapper.T_BANNER] = {
        id = "[your id here]",
        size = {width = "100vw", height = "56vh"},
        position = {x = "0px", y = "0px"},
        css_styles = "position: static;align-items: center;justify-content: center;overflow: hidden;display: flex;",
        css_hide = "position: static;align-items: center;justify-content: center;overflow: hidden;display: none;",
        css_show = "position: relative;align-items: center;justify-content: center;overflow: hidden;display: flex;"
    }
})