CSS错误的行为

时间:2016-06-08 12:27:14

标签: android css cordova webview crosswalk

编辑:

在使用box-shadowborder-radius的同时,似乎是人行横道上的一个错误。暂时找不到修复程序......

cordova-plugin-crosswalk-webview上,CSS未显示在其他网络视图中。

以下是有关浏览器和Android默认网络视图的工作示例:

Working select

Working menu

在Android上Crosswalk plugin的webview上显示相同的元素:

Not working select Not working menu

相关CSS:

1。选择:

.cat-circler {
  margin-left: auto;
  margin-right: auto;
  height: 340px;
  width: 340px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  box-shadow: 1px 1px 20px 5px #111111; }

.rounded-image-parent {
  z-index: 5; }

.rounded-image-parent .rounded-image {
  border: 5px solid #444444;
  width: 130px;
  border-radius: 50%;
  height: 130px; }

2。菜单的背景碟

.menuSaucer {
  position: fixed;
  height: 270px;
  width: 270px;
  left: -100px;
  top: -100px;
  background-color: #555555;
  border-radius: 100%;
  opacity: 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  box-shadow: 1px 1px 1px 1px #555555;
  -moz-box-shadow: 1px 1px 1px 1px #555555;
  -webkit-box-shadow: 1px 1px 1px 1px #555555; }


.menuSaucer.menuSauceropen {
  opacity: 1;
  transition-delay: 0.1s;
  transition: 0.3s opacity linear;
  z-index: 10; }

.menuSauceropen {
  opacity: 1; }

我错过了什么吗?为什么会这样显示?

0 个答案:

没有答案