聚合物纸对话框背景不透明? [英] Polymer paper-dialog backdrop opacity?

查看:101
本文介绍了聚合物纸对话框背景不透明?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的Polymer元素中有一个纸质对话框.我想使背景不透明,现在它是半透明的.我也想改变颜色.

I have a paper-dialog in my Polymer element. I want to make the backdrop opaque, right now it is semi-transparent. I would also like to change the color.

有人知道怎么做吗?我已经在我的自定义元素中尝试过此CSS:

Does anyone know how to do it. I have already tried this css in my custom element:

<style is="custom-style">
--iron-overlay-backdrop-opacity:1;
</style>

<paper-dialog modal></paper-dialog>

但是没有效果.

我也尝试过

<style is="custom-style">
:host {
  --iron-overlay-backdrop-opacity:1;
}
</style>

<paper-dialog modal></paper-dialog>

推荐答案

iron-overlay-backdrop直接附加到文档正文中,自定义元素之外,并且由于Polymer的CSS封装,不能在元素内使用<style>为背景设置样式.

The iron-overlay-backdrop is appended directly to the document body, outside of your custom element, and due to Polymer's CSS encapsulation, you can't style the backdrop with a <style> from within the element.

但是,您的元素可以强制使用 Polymer.updateStyles(...) ,它会更新所有自定义元素的样式,包括元素外部的iron-overlay-backdrop:

However, your element could imperatively style the backdrop with Polymer.updateStyles(...), which updates the styles for all custom elements, including the iron-overlay-backdrop outside your element:

Polymer.updateStyles({
  '--iron-overlay-backdrop-background-color': 'red',
  '--iron-overlay-backdrop-opacity': '1'
});

<head>
  <base href="https://polygit.org/polymer+1.11.1/components/">
  <script src="webcomponentsjs/webcomponents-lite.js"></script>
  <link rel="import" href="polymer/polymer.html">
  <link rel="import" href="paper-button/paper-button.html">
  <link rel="import" href="paper-dialog/paper-dialog.html">
</head>
<body>

  <div>Click button for dialog</div>
  <x-demo></x-demo>

  <dom-module id="x-demo">
    <template>
      <x-dialog id="blue" backdrop-color="blue" backdrop-opacity="1"></x-dialog>
      <x-dialog id="red" backdrop-color="red" backdrop-opacity="0.2"></x-dialog>
      <x-dialog id="green" backdrop-color="green" backdrop-opacity="0.5"></x-dialog>
      <paper-button on-tap="_openDialog" data-dialog="blue">Blue (opacity 100%)</paper-button>
      <paper-button on-tap="_openDialog" data-dialog="red">Red (opacity 20%)</paper-button>
      <paper-button on-tap="_openDialog" data-dialog="green">Green (opacity 50%)</paper-button>
    </template>
    <script>
      HTMLImports.whenReady(function() {
        Polymer({
          is: 'x-demo',
          _openDialog: function(e) {
            var dialog = e.target.dataset.dialog;
            this.$[dialog].opened = true;
          }
        })
      });
    </script>
  </dom-module>

  <dom-module id="x-dialog">
    <template>
      <paper-dialog modal with-backdrop opened="{{opened}}">
        <div class="buttons">
          <paper-button dialog-dismiss>Close</paper-button>
        </div>
      </paper-dialog>
    </template>
    <script>
      HTMLImports.whenReady(function() {
        Polymer({
          is: 'x-dialog',
          properties: {
            backdropColor: {
              type: String,
              value: 'green'
            },
            backdropOpacity: {
              type: String,
              value: '0.6'
            },
            opened: {
              type: Boolean,
              value: false
            }
          },

          observers: ['_updateBackdrop(opened, backdropColor, backdropOpacity)'],

          _updateBackdrop: function(opened, color, opacity) {
            if (opened && color && opacity) {
              Polymer.RenderStatus.afterNextRender(this, function() {
              	this._setBackdropStyles(color, opacity);
              });
            }
          },
          _setBackdropStyles: function(color, opacity) {
            Polymer.updateStyles({
              '--iron-overlay-backdrop-background-color': color,
              '--iron-overlay-backdrop-opacity': opacity
            });
          }
        });
      });
    </script>
  </dom-module>
</body>

codepen

或者要为所有背景设置固定的静态样式,请在正文中使用<style is="custom-style">:

Or to set a fixed static style for all backdrops, use <style is="custom-style"> from the body:

<body>
  <style is="custom-style">
    iron-overlay-backdrop {
      --iron-overlay-backdrop-opacity: 1;
      --iron-overlay-backdrop-background-color: green;
    }
  </style>
  <x-dialog></x-dialog>
</body>

<head>
  <base href="https://polygit.org/polymer+1.11.1/components/">
  <script src="webcomponentsjs/webcomponents-lite.js"></script>
  <link rel="import" href="polymer/polymer.html">
  <link rel="import" href="paper-button/paper-button.html">
  <link rel="import" href="paper-dialog/paper-dialog.html">
</head>
<body>
  <style is="custom-style">
    iron-overlay-backdrop {
      --iron-overlay-backdrop-opacity: 1;
      --iron-overlay-backdrop-background-color: green;
    }
  </style>
  <div>Hello world</div>
  <x-dialog></x-dialog>

  <dom-module id="x-dialog">
    <template>
      <paper-dialog modal with-backdrop opened>
        <div class="buttons">
          <paper-button dialog-dismiss>Close</paper-button>
        </div>
      </paper-dialog>
    </template>
    <script>
      HTMLImports.whenReady(function() {
        Polymer({ is: 'x-dialog' });
      });
    </script>
  </dom-module>
</body>

codepen

这篇关于聚合物纸对话框背景不透明?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆