首页 \ 问答 \ 中小型汽修厂用什么管理软件比较好?

中小型汽修厂用什么管理软件比较好?

我的厂不大,以前听说用软件挺好的,不过之前的生意不是特别的好,就一直没用,现在想用软件来规范管理,请问软件那个好?
更新时间:2023-12-13 09:12

最满意答案

以下是您可以尝试圆形,阴影和边框的起点。

小提琴演示1
小提琴演示2 (更改图像的边框/填充)

<div class="login-wrapper" ng-controller="loginController">
    <div class="field-wrapper">
        <div class="login-img-wrapper">
            <img src="http://lorempixel.com/output/people-q-c-100-100-9.jpg" />
            <div class="shadow"></div>
        </div>
    </div>
</div>


.login-img-wrapper {
    position: relative;
    height: 150px;
    width: 150px;
    background-color: #eee;
    margin: auto;
    border-bottom: 1px solid #bbb;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.login-img-wrapper:after,
.login-img-wrapper:before {
    z-index: -1;
    height: 4px;    
    bottom: -5px;
    left: 6px;
    right: 6px;
    background-color: #eee;
    border-bottom: 1px solid #bbb;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    content:" ";
    position: absolute;
}
.login-img-wrapper:after {
    bottom: -3px;
    left: 3px;
    right: 3px;
}
.login-img-wrapper:before {
    box-shadow: 0 0 10px gray;
}

.login-img-wrapper img {
    border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
    padding: 5px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0 0 10px gray;
}

.login-img-wrapper .shadow {
    background: linear-gradient(130deg, white 50%, transparent 40%);
    border-radius: 50%;
    opacity: .7;
    z-index: 15;
    position: absolute;
    height: 100px;
    width: 100px;
    top: 0;
}

更新

使用新的CSS clip-path形状圆形,椭圆形和多边形,可以完成更高级的遮罩和形状,尽管它仍然具有糟糕的浏览器支持。

在这里阅读更多相关信息: https//css-tricks.com/clipping-masking-css/

对于更高级的剪辑/阴影(以及更好的浏览器支持),我建议开始将SVG与CSS结合使用。

作为一个开始,这里有一些方法: 使用HTML中的SVG绘制新月


Here is a start from where you can experiment with circle, shadow and border.

Fiddle Demo 1
Fiddle Demo 2 (Changed border/padding for image)

<div class="login-wrapper" ng-controller="loginController">
    <div class="field-wrapper">
        <div class="login-img-wrapper">
            <img src="http://lorempixel.com/output/people-q-c-100-100-9.jpg" />
            <div class="shadow"></div>
        </div>
    </div>
</div>


.login-img-wrapper {
    position: relative;
    height: 150px;
    width: 150px;
    background-color: #eee;
    margin: auto;
    border-bottom: 1px solid #bbb;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.login-img-wrapper:after,
.login-img-wrapper:before {
    z-index: -1;
    height: 4px;    
    bottom: -5px;
    left: 6px;
    right: 6px;
    background-color: #eee;
    border-bottom: 1px solid #bbb;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    content:" ";
    position: absolute;
}
.login-img-wrapper:after {
    bottom: -3px;
    left: 3px;
    right: 3px;
}
.login-img-wrapper:before {
    box-shadow: 0 0 10px gray;
}

.login-img-wrapper img {
    border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
    padding: 5px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: 0 0 10px gray;
}

.login-img-wrapper .shadow {
    background: linear-gradient(130deg, white 50%, transparent 40%);
    border-radius: 50%;
    opacity: .7;
    z-index: 15;
    position: absolute;
    height: 100px;
    width: 100px;
    top: 0;
}

Update

Using the new CSS clip-path shapes circles, ellipses, and polygons, more advanced masking and shapes can be done, though it still has bad browser support.

Read more about it here: https://css-tricks.com/clipping-masking-css/

For even more advanced clipping/shadowing (and better browser support) I recommend to start using SVG in combination with CSS.

As a start here is some ways to go: Draw a crescent moon using SVG in HTML

相关问答

更多
  • 以下是您可以尝试圆形,阴影和边框的起点。 小提琴演示1 小提琴演示2 (更改图像的边框/填充)
  • 重叠的边框总是有点棘手。 在您的情况下,我不建议使用绝对位置和z索引 - 这只会使事情变得更复杂,您将无法再依赖块元素的本机行为。 假设你的HTML看起来像这样:
    通过仅对:first-child应用顶部边框,您可以实现重叠儿童的错觉。 即使 ...
  • 您可以使用box-shadow ,可能: #something { background: transparent url(https://i.stack.imgur.com/RL5UH.png) 50% 50% no-repeat; min-width: 300px; min-height: 300px; box-shadow: inset 0 0 10px #0f0; } #something { background: transparent url(https ...
  • 我能够成功地获得您正在寻找的结果。 解决方案是我第一次看到的解决方案: http : //offshootinc.com/blog/2011/11/23/getting-100-column-height-with-css/ 。 唯一的问题是您需要知道哪个列是具有最多内容的列才能使其工作。 如果经常更改(即:动态内容),您可能需要求助于Javascript解决方案。 我已经发布了下面的代码,但你也可以在这里查看jsFiddle: http : //jsfiddle.net/mesPb/