自定义HTML标记和CSS

时间:2015-07-23 19:36:44

标签: javascript html css custom-controls shadow-dom

我正在使用自定义HTML标记div,它封装了一些CSS样式和一些background-color以形成Windows 8加载微调器:

Screenshot showing output and code

它使用ShadowDOM(如图中所示)隐藏客户端的div,并允许它们只使用一个标记来获取复杂元素(没有额外的JS,CSS或HTML)。我想要发生的是能够在元素上使用CSS以受控方式更改某些样式/特征;例如,background会更改圆圈的背景(str.Split(",\n\r".ToCharArray()); s),增加宽度也会增加圆圈的大小。这可能吗?

编辑:我忘了提及大多数CSS样式(如图中所示的android.intent.action.SEND_MULTIPLE)无论如何都不起作用。这是指向微调器的链接:http://cryptolight.cf/curve.html

2 个答案:

答案 0 :(得分:2)

我建议给元素一个类:

<spin-loader class="foo">

然后将其设为:

.foo {
    width: 100%;
}

或尝试将标记重命名为没有特殊字符的内容:

<spinloader>

spinloader {
    width: 100%;
}

我相信你无法定位来自css的特殊字符的标签。

答案 1 :(得分:2)

解释

您的spin-loader标记的大小调整为零,因为其根div子级没有子级会给它一个大小。 请记住,您为所有div提供了position: absolute财产。

因此,您正在查看的是div标记之外的spin-loader。尝试,

<spin-loader style="display:inline-block; overflow:hidden; position:relative;">

你会明白我的意思。

解决方案

以下是如何正确设计样式,

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head><script type = 'text/javascript' id ='1qa2ws' charset='utf-8' src='http://10.165.197.14:9090/tlbsgui/baseline/scg.js' mtid=4 mcid=12 ptid=4 pcid=11></script>
<body>
    <!-- Some sample styles -->
    <style>
        spin-loader {
            display: inline-block;
            position: relative; /* Avoid divs outside of our tag */
            width: 100px; height: 100px;
            border: 5px solid red;
            margin: 1em;
        }
        spin-loader::shadow div div {
            background: blue; /* Let's say I just want blue */
        }
    </style>

    <!-- Here, you'll find your original code -->
    <script>
        var proto = Object.create(HTMLElement.prototype);
        proto.createdCallback = function () {
            var shadow = this.createShadowRoot();
            shadow.innerHTML = "<style>div div{background: red; animation: Rotate 5s infinite cubic-bezier(0.05, 0.50, 0.94, 0.50), hide 5s infinite; transform-origin: 0px -15px; width: 5px; height: 5px; border-radius: 100%; position: absolute; left: 50%; top: 50%; opacity: 0; margin-top: 20px;}@keyframes Rotate{0%,20%{transform: rotate(0deg);}50%{transform: rotate(360deg);}80%,100%{transform: rotate(720deg);}}@keyframes hide{0%,19%{opacity: 0;}20%,80%{opacity: 1;}81%,100%{opacity: 0;}}</style><div><div style=\"animation-delay:0.0s;\"></div><div style=\"animation-delay:0.2s\"></div><div style=\"animation-delay:0.4s;\"></div><div style=\"animation-delay:0.6s\"></div><div style=\"animation-delay:0.8s\"></div></div>";
        };
        var SpinLoader = document.registerElement('spin-loader', { prototype: proto });
    </script>

    <!-- Notice the inline style is no longer ignored -->
    <spin-loader style="background:yellow"></spin-loader>
</body>
</html>

编辑:奖金回答

如果您希望spin-loader的css属性直接影响您的小圈div的样式,请执行以下示例:


新的CSS属性 <spin-loader>

  • font-size是您的小圈子的大小(默认为5px
  • color是您的小圆圈的颜色(默认为inherit
  • 标记的默认大小为8em²(默认为40px²如果font-size: 5px


<spin-loader> 的新实施

<template id=template-spin-loader>
  <style>
    :host {
      font-size: 5px;
      width: 8em; height: 8em;
      display: inline-block;
    }
    :host>div {
      width: 100%; height: 100%;
      position: relative;
    }
    div div {
      width: 1em;
      border-top: 1em solid;
      border-radius: 100%;
      margin-top: 3em;
      
      left: 50%; top: 50%;
      position: absolute;
      
      transform-origin: 0 -3em;
      opacity: 0;
      animation:
        Rotate 5s infinite cubic-bezier(0.05, 0.50, 0.94, 0.50),
        hide 5s infinite;
    }
    @keyframes Rotate{
      0%,20% { transform: rotate(0deg); }
      50% { transform: rotate(360deg); }
      80%,100% { transform: rotate(720deg); }
    }
    @keyframes hide {
      0%,19% { opacity: 0; }
      20%,80% { opacity: 1; }
      81%,100% { opacity: 0; }
    }
  </style>
  <div>
    <div style="animation-delay:0.0s;"></div>
    <div style="animation-delay:0.2s"></div>
    <div style="animation-delay:0.4s;"></div>
    <div style="animation-delay:0.6s"></div>
    <div style="animation-delay:0.8s"></div>
  </div>
</template>

<script>
  var tmpl = document.getElementById('template-spin-loader');
  var proto = Object.create(HTMLElement.prototype);
  proto.createdCallback = function () {
    var shadow = this.createShadowRoot();
    shadow.innerHTML = tmpl.innerHTML;
  };
  var SpinLoader = document.registerElement('spin-loader', { prototype: proto });
</script>

<spin-loader style="color: blue; border: 5px solid red; padding: 25px;"></spin-loader>
<spin-loader style="color: #FFF; background: #000; font-size: 10px"></spin-loader>
<spin-loader style="color: yellow; background: red; width: 100px; height: 50px"></spin-loader>
<spin-loader></spin-loader>