Форум программистов, компьютерный форум, киберфорум
HTML, CSS
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.67/3: Рейтинг темы: голосов - 3, средняя оценка - 4.67
9 / 6 / 3
Регистрация: 25.08.2018
Сообщений: 262

Почему не срабатывает margin в блоке ul в слайдере Peppermint?

09.02.2019, 17:39. Показов 710. Ответов 1
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
Ни получается сдвинуть блок вверх. Почему не срабатывает margin? Нужно, что бы картинка была без фоновой полосы внизу.
Ранее внизу на белом фоне была пагиация (точки) - поднял их вверх, а полосу не получается убрать.
PHP/HTML
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="css/peppermint.suggested.css" rel="stylesheet" type="text/css"> 
    <script src="js/peppermint.js"></script>
</head>
    
<body>
<div class="peppermint peppermint-inactive" id="peppermint">
  <figure> <img src="slider/s1.jpg" alt=""> </figure>
  <figure> <img src="slider/s2.jpg" alt=""> </figure>
  <figure> <img src="slider/s3.jpg" alt=""> </figure>
</div>
 
<script>
var slider = Peppermint(document.getElementById('peppermint'), {
  dots: true,
  slideshow: true,
  speed: 500,
  slideshowInterval: 5000,
  stopSlideshowAfterInteraction: true,
  onSetup: function(n) {
    console.log('Peppermint setup done. Slides found: ' + n);
  }
});
</script>
</body>
</html>

CSS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
body {
   margin: 0;
   padding: 0;
}
.peppermint.peppermint-active {
    position: relative;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}
 
.peppermint.peppermint-active .peppermint-slides {
    position: relative;
    overflow: hidden; /* clearfix */
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
 
.peppermint.peppermint-active .peppermint-slides > * {
    float: left;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}
 
.peppermint.peppermint-active .peppermint-slides a:active,
.peppermint.peppermint-active .peppermint-slides a:active img {
    outline: none;
}
 
.peppermint.peppermint-active,
.peppermint.peppermint-active .peppermint-dots,
.peppermint.peppermint-active .peppermint-slides,
.peppermint.peppermint-active .peppermint-slides > * {
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
 
.peppermint.peppermint-mouse .peppermint-slides {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}
 
.peppermint.peppermint-mouse.peppermint-drag .peppermint-slides * {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}
 
/* default appearance styles */
.peppermint {
    text-align: center;
}
 
.peppermint figure {
    margin: 0;
}
 
.peppermint figure img {
    vertical-align: top;
    width: 100%;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
 
.peppermint figure figcaption {
    font-style: italic;
    color: #ffaa00;
    font-size: 0.8em;
    margin-top: 0.5em;
}
 
.peppermint.peppermint-active {
    margin-bottom: 1.5em;
}
 
.peppermint-slides {
    padding-top: 0;
    padding-bottom: 0;
}
 
/* dots */
ul.peppermint-dots {
    margin:  0;/* Вверх, вправо, вниз, влево */
    padding: 0;
    text-align: center;
    list-style-type: none;
}
 
.peppermint.peppermint-active ul.peppermint-dots {
    margin: 0 0 0.6em 0;
}
 
.peppermint.peppermint-active .peppermint-slides + ul.peppermint-dots {
    margin: -50px 0 0 0;/* Вверх, вправо, вниз, влево */
}
 
ul.peppermint-dots > li {
    display: inline-block;
    position: relative;
    padding: 0.5em 0.6em;
    margin: -40px 0 0 0;/* Вверх, вправо, вниз, влево */
    width: 12px;
    height: 12px;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    /* ie7 fallback */
    *display: inline;
    *zoom: 1;
}
 
ul.peppermint-dots > li.peppermint-mouse-clicked,
ul.peppermint-dots > li:active {
    outline: 0;
}
 
ul.peppermint-dots > li > span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}
 
ul.peppermint-dots > li.peppermint-active-dot > span {
    margin: -6px 0 0 -6px;
    width: 15px;
    height: 15px;
    border: 2px solid #ffaa00;
    background: transparent;
}


JavaScript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*!
 * Peppermint touch slider
 * v. 1.4.0 | https://github.com/wilddeer/Peppermint
 * Copyright Oleg Korsunsky | http://wd.dizaina.net/
 *
 * Depends on Event Burrito (included) | https://github.com/wilddeer/Event-Burrito
 * MIT License
 */
function Peppermint(a, b) {
    function c(a, b) {
        for(var c in b) b.hasOwnProperty(c) && (a[c] = b[c])
    }
 
    function d(a) {
        var b = ["Webkit", "Moz", "O", "ms"],
            c = document.createElement("div");
        if(void 0 !== c.style[a]) return !0;
        a = a.charAt(0).toUpperCase() + a.slice(1);
        for(var d in b)
            if(void 0 !== c.style[b[d] + a]) return !0;
        return !1
    }
 
    function e(a, b) {
        new RegExp("(\\s|^)" + b + "(\\s|$)").test(a.className) || (a.className += " " + b)
    }
 
    function f(a, b) {
        a.className = a.className.replace(new RegExp("(\\s+|^)" + b + "(\\s+|$)", "g"), " ").replace(/^\s+|\s+$/g, "")
    }
 
    function g(a, b) {
        0 > a ? a = 0 : a > v - 1 && (a = v - 1);
        for(var c = C.dots.length - 1; c >= 0; c--) f(C.dots[c], G.activeDot);
        return e(C.dots[a], G.activeDot), E = a, h(-a * C.width, void 0 === b ? F.speed : b), o(), F.onSlideChange && F.onSlideChange(a), a
    }
 
    function h(a, b) {
        var c = b ? b + "ms" : "";
        y.style.webkitTransitionDuration = y.style.MozTransitionDuration = y.style.msTransitionDuration = y.style.OTransitionDuration = y.style.transitionDuration = c, j(a)
    }
 
    function i(a, b) {
        if(B && clearInterval(B), !b) return void j(a);
        var c = +new Date,
            d = C.left;
        B = setInterval(function() {
            function e(a, b) {
                return(b - a) * i + a
            }
            var f, g, h = +new Date - c,
                i = h / b,
                k = [0, .7, 1, 1];
            return i >= 1 ? (j(a), void clearInterval(B)) : (f = a - d, g = e(e(e(k[0], k[1]), e(k[1], k[2])), e(e(k[1], k[2]), e(k[2], k[3]))), void j(Math.floor(g * f + d)))
        }, 15)
    }
 
    function j(a) {
        y.style.webkitTransform = "translate(" + a + "px,0) translateZ(0)", y.style.msTransform = y.style.MozTransform = y.style.OTransform = y.style.transform = "translateX(" + a + "px)", C.left = a
    }
 
    function k(a) {
        y.style.left = a + "px", C.left = a
    }
 
    function l() {
        var a = E + 1;
        return a > v - 1 && (a = 0), g(a)
    }
 
    function m() {
        var a = E - 1;
        return 0 > a && (a = v - 1), g(a)
    }
 
    function n() {
        A = !0, o()
    }
 
    function o() {
        A && (z && clearTimeout(z), z = setTimeout(function() {
            l()
        }, F.slideshowInterval))
    }
 
    function p() {
        z && clearTimeout(z)
    }
 
    function q() {
        A = !1, z && clearTimeout(z)
    }
 
    function r() {
        C.width = a.offsetWidth, y.style.width = C.width * v + "px";
        for(var b = 0; v > b; b++) C.slides[b].style.width = C.width + "px";
        h(-E * C.width)
    }
 
    function s(a, b, c, d) {
        b && (a.addEventListener ? a.addEventListener(b, c, !!d) : a.attachEvent("on" + b, c))
    }
 
    function t() {
        EventBurrito(y, {
            mouse: F.mouseDrag,
            start: function() {
                e(a, G.drag)
            },
            move: function(a, b, c) {
                p(), c.x = c.x / (!E && c.x > 0 || E == v - 1 && c.x < 0 ? Math.abs(c.x) / C.width * 2 + 1 : 1), h(c.x - C.width * E)
            },
            end: function(b, c, d) {
                if(d.x) {
                    var e = Math.abs(d.x) / C.width,
                        h = Math.floor(e) + (e - Math.floor(e) > .25 ? 1 : 0),
                        i = d.time < D + D * h / 1.8 && Math.abs(d.x) - h * C.width > (h ? -C.width / 9 : 20);
                    h += i ? 1 : 0, d.x < 0 ? g(E + h, F.touchSpeed) : g(E - h, F.touchSpeed), F.stopSlideshowAfterInteraction && q()
                }
                f(a, G.drag)
            }
        })
    }
 
    function u() {
        var b = F.slidesContainer || a,
            c = F.dotsContainer || a;
        if(!(F.disableIfOneSlide && b.children.length <= 1)) {
            (!H.transforms || window.opera) && (j = k), (!H.transitions || window.opera) && (h = i), y = F.slidesContainer || document.createElement("div"), e(y, G.slides);
            for(var d = 0, l = b.children.length; l > d; d++) {
                var m = b.children[d],
                    o = document.createElement("li");
                C.slides.push(m), o.setAttribute("tabindex", "0"), o.setAttribute("role", "button"), o.innerHTML = "<span></span>",
                    function(b, c) {
                        s(c, "click", function() {
                            g(b), F.stopSlideshowAfterInteraction && q()
                        }), s(c, "keyup", function(a) {
                            13 == a.keyCode && (g(b), F.stopSlideshowAfterInteraction && q())
                        }), s(c, "mouseup", function() {
                            e(c, G.mouseClicked)
                        }), s(c, "blur", function() {
                            f(c, G.mouseClicked)
                        }, !0), s(m, "focus", m.onfocusin = function() {
                            a.scrollLeft = 0, setTimeout(function() {
                                a.scrollLeft = 0
                            }, 0), g(b)
                        }, !0)
                    }(d, o), C.dots.push(o)
            }
            v = C.slides.length, w = 100 / v, e(a, G.active), f(a, G.inactive), F.mouseDrag && e(a, G.mouse), C.width = a.offsetWidth, y.style.width = C.width * v + "px";
            for(var d = 0; v > d; d++) C.slides[d].style.width = C.width + "px", y.appendChild(C.slides[d]);
            if(F.slidesContainer || a.appendChild(y), F.dots && v > 1) {
                x = document.createElement("ul"), e(x, G.dots);
                for(var d = 0, l = C.dots.length; l > d; d++) x.appendChild(C.dots[d]);
                F.dotsPrepend ? c.insertBefore(x, c.firstChild) : c.appendChild(x)
            }
            s(window, "resize", r), s(window, "orientationchange", r), setTimeout(function() {
                g(F.startSlide, 0)
            }, 0), F.slideshow && n(), t(), setTimeout(function() {
                F.onSetup && F.onSetup(v)
            }, 0)
        }
    }
    var v, w, x, y, z, A, B, C = {
            slides: [],
            dots: [],
            left: 0
        },
        D = 200,
        E = 0,
        F = {
            speed: 300,
            touchSpeed: 300,
            slideshow: !1,
            slideshowInterval: 4e3,
            stopSlideshowAfterInteraction: !1,
            startSlide: 0,
            mouseDrag: !0,
            disableIfOneSlide: !0,
            cssPrefix: "peppermint-",
            dots: !1,
            dotsPrepend: !1,
            dotsContainer: void 0,
            slidesContainer: void 0,
            onSlideChange: void 0,
            onSetup: void 0
        };
    b && c(F, b);
    var G = {
            inactive: F.cssPrefix + "inactive",
            active: F.cssPrefix + "active",
            mouse: F.cssPrefix + "mouse",
            drag: F.cssPrefix + "drag",
            slides: F.cssPrefix + "slides",
            dots: F.cssPrefix + "dots",
            activeDot: F.cssPrefix + "active-dot",
            mouseClicked: F.cssPrefix + "mouse-clicked"
        },
        H = {
            transforms: d("transform"),
            transitions: d("transition")
        };
    return u(), {
        slideTo: function(a, b) {
            return g(parseInt(a, 10), b)
        },
        next: l,
        prev: m,
        start: n,
        stop: q,
        pause: p,
        getCurrentPos: function() {
            return E
        },
        getSlidesNumber: function() {
            return v
        },
        recalcWidth: r
    }
}
window.jQuery && ! function($) {
    $.fn.Peppermint = function(a) {
        return this.each(function() {
            $(this).data("Peppermint", Peppermint(this, a))
        }), this
    }
}(window.jQuery);
 
function EventBurrito(a, b) {
    function c(a, b) {
        for(var c in b) b.hasOwnProperty(c) && (a[c] = b[c])
    }
 
    function d(a, b, c, d) {
        return b ? (a.addEventListener ? a.addEventListener(b, c, !!d) : a.attachEvent("on" + b, c), {
            remove: function() {
                e(a, b, c, d)
            }
        }) : void 0
    }
 
    function e(a, b, c, d) {
        b && (a.removeEventListener ? a.removeEventListener(b, c, !!d) : a.detachEvent("on" + b, c))
    }
 
    function f(a) {
        a.preventDefault ? a.preventDefault() : a.returnValue = !1
    }
 
    function g(a) {
        if(r = {
                x: (o ? a.clientX : a.touches[0].clientX) - q.x,
                y: (o ? a.clientY : a.touches[0].clientY) - q.y,
                time: Number(new Date) - q.time
            }, r.time - t[t.length - 1].time) {
            for(var b = 0; b < t.length - 1 && r.time - t[b].time > 80; b++);
            s = {
                x: (r.x - t[b].x) / (r.time - t[b].time),
                y: (r.y - t[b].y) / (r.time - t[b].time)
            }, t.length >= 5 && t.shift(), t.push({
                x: r.x,
                y: r.y,
                time: r.time
            })
        }
    }
 
    function h(a, b) {
        v = !0, o = b, y[o](a) || (d(document, x[o][1], i), d(document, x[o][2], j), d(document, x[o][3], j), m.preventDefault && o && f(a), q = {
            x: o ? a.clientX : a.touches[0].clientX,
            y: o ? a.clientY : a.touches[0].clientY,
            time: Number(new Date)
        }, n = void 0, r = {
            x: 0,
            y: 0,
            time: 0
        }, s = {
            x: 0,
            y: 0
        }, t = [{
            x: 0,
            y: 0,
            time: 0
        }], m.start(a, q))
    }
 
    function i(a) {
        !m.preventScroll && n || y[o](a) || (g(a), (Math.abs(r.x) > m.clickTolerance || Math.abs(r.y) > m.clickTolerance) && (v = !1), void 0 === n && 3 !== o && (n = Math.abs(r.x) < Math.abs(r.y) && !m.preventScroll) || (m.preventDefault && f(a), m.move(a, q, r, s)))
    }
 
    function j(a) {
        o && g(a), !v && a.target && a.target.blur && a.target.blur(), e(document, x[o][1], i), e(document, x[o][2], j), e(document, x[o][3], j), m.end(a, q, r, s)
    }
 
    function k() {
        u.push(d(a, x[w][0], function(a) {
            h(a, w)
        })), u.push(d(a, "dragstart", f)), m.mouse && !w && u.push(d(a, x[3][0], function(a) {
            h(a, 3)
        })), u.push(d(a, "click", function(a) {
            v ? m.click(a) : f(a)
        }))
    }
    var l = function() {},
        m = {
            preventDefault: !0,
            clickTolerance: 0,
            preventScroll: !1,
            mouse: !0,
            start: l,
            move: l,
            end: l,
            click: l
        };
    b && c(m, b);
    var n, o, p = {
            pointerEvents: !!window.navigator.pointerEnabled,
            msPointerEvents: !!window.navigator.msPointerEnabled
        },
        q = {},
        r = {},
        s = {},
        t = [],
        u = [],
        v = !0,
        w = p.pointerEvents ? 1 : p.msPointerEvents ? 2 : 0,
        x = [
            ["touchstart", "touchmove", "touchend", "touchcancel"],
            ["pointerdown", "pointermove", "pointerup", "pointercancel"],
            ["MSPointerDown", "MSPointerMove", "MSPointerUp", "MSPointerCancel"],
            ["mousedown", "mousemove", "mouseup", !1]
        ],
        y = [function(a) {
            return a.touches && a.touches.length > 1 || a.scale && 1 !== a.scale
        }, function(a) {
            return !a.isPrimary || a.buttons && 1 !== a.buttons || !m.mouse && "touch" !== a.pointerType && "pen" !== a.pointerType
        }, function(a) {
            return !a.isPrimary || a.buttons && 1 !== a.buttons || !m.mouse && a.pointerType !== a.MSPOINTER_TYPE_TOUCH && a.pointerType !== a.MSPOINTER_TYPE_PEN
        }, function(a) {
            return a.buttons && 1 !== a.buttons
        }];
    return k(), {
        getClicksAllowed: function() {
            return v
        },
        kill: function() {
            for(var a = u.length - 1; a >= 0; a--) u[a].remove()
        }
    }
}
0
Programming
Эксперт
39485 / 9562 / 3019
Регистрация: 12.04.2006
Сообщений: 41,671
Блог
09.02.2019, 17:39
Ответы с готовыми решениями:

Margin и padding стрелки навигации в слайдере - CSS
Помогите, пожалуйста, выровнять обе стрелки. На первой картинке - это то, что сейчас у меня. На второй, что должно получиться со стрелкой...

Свойство margin не срабатывает в FireFox
Что может быть, если свойство margin-right не срабатывает в Файр Фоксе? В Опере и Гугл Хроме все работает. Margin-right задано не...

Почему не работает margin
&lt;!DOCTYPE html&gt; &lt;html lang=&quot;en&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;UTF-8&quot;&gt; &lt;title&gt;Mizinets&lt;/title&gt; &lt;link rel=&quot;stylesheet&quot;...

1
9 / 6 / 3
Регистрация: 25.08.2018
Сообщений: 262
11.02.2019, 03:29  [ТС]
Оказалось - моя не внимательность, хотя несколько раз пункты в css просматривал и пробовал менять.
РЕШЕНО - CSS строчки 89-91
0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
inter-admin
Эксперт
29715 / 6470 / 2152
Регистрация: 06.03.2009
Сообщений: 28,500
Блог
11.02.2019, 03:29
Помогаю со студенческими работами здесь

Почему появляется margin
http://jsfiddle.net/oleg126/z4Jug/ &lt;div class=&quot;post-1&quot;&gt; &lt;img src=&quot;images/img1.jpg&quot;&gt; &lt;p&gt;Рыбным текстом называется текст,...

Почему footer на реагирует на margin-top?
Задаю футеру маргин сверху и снизу, а он, падла, совсем не реагирует. Не хочет отодвигаться от верхнего дива. footer { margin:...

Не могу понять почему не работает margin
&lt;html&gt; &lt;head&gt; &lt;title&gt;zgdk.ru&lt;/title&gt; &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;/&gt; &lt;/head&gt; &lt;body&gt; &lt;div...

Почему при указании float не работает margin
Почему при float не работает margin 0 auto

Почему делая отступ margin-top уезжает и второй блок?
body{ background: yellow; } #list{ background: #fff; width:90%; height:100%; box-shadow: 0 0 10px rgba(0,0,0,0.5); ...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
2
Ответ Создать тему
Новые блоги и статьи
Использование SDL3-callbacks вместо функции main() на Android, Desktop и WebAssembly
8Observer8 24.01.2026
Если вы откроете примеры для начинающих на официальном репозитории SDL3 в папке: examples, то вы увидите, что все примеры используют следующие четыре обязательные функции, а привычная функция main(). . .
моя боль
iceja 24.01.2026
Выложила интерполяцию кубическими сплайнами www. iceja. net REST сервисы временно не работают, только через Web. Написала за 56 рабочих часов этот сайт с нуля. При помощи perplexity. ai PRO , при. . .
Модель сукцессии микоризы
anaschu 24.01.2026
Решили писать научную статью с неким РОманом
http://iceja.net/ математические сервисы
iceja 20.01.2026
Обновила свой сайт http:/ / iceja. net/ , приделала Fast Fourier Transform экстраполяцию сигналов. Однако предсказывает далеко не каждый сигнал (см ограничения http:/ / iceja. net/ fourier/ docs ). Также. . .
http://iceja.net/ сервер решения полиномов
iceja 18.01.2026
Выкатила http:/ / iceja. net/ сервер решения полиномов (находит действительные корни полиномов методом Штурма). На сайте документация по API, но скажу прямо VPS слабенький и 200 000 полиномов. . .
Расчёт переходных процессов в цепи постоянного тока
igorrr37 16.01.2026
/ * Дана цепь(не выше 3-го порядка) постоянного тока с элементами R, L, C, k(ключ), U, E, J. Программа находит переходные токи и напряжения на элементах схемы классическим методом(1 и 2 з-ны. . .
Восстановить юзерскрипты Greasemonkey из бэкапа браузера
damix 15.01.2026
Если восстановить из бэкапа профиль Firefox после переустановки винды, то список юзерскриптов в Greasemonkey будет пустым. Но восстановить их можно так. Для этого понадобится консольная утилита. . .
Сукцессия микоризы: основная теория в виде двух уравнений.
anaschu 11.01.2026
https:/ / rutube. ru/ video/ 7a537f578d808e67a3c6fd818a44a5c4/
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru