RError.com

RError.com Logo RError.com Logo

RError.com Navigation

  • 主页

Mobile menu

Close
  • 主页
  • 系统&网络
    • 热门问题
    • 最新问题
    • 标签
  • Ubuntu
    • 热门问题
    • 最新问题
    • 标签
  • 帮助
主页 / user-329529

Frenc Olesov's questions

Martin Hope
Frenc Olesov
Asked: 2020-05-10 14:48:57 +0000 UTC

如何为本地 XAMPP 服务器制作 Sendmail 存根?

  • 2

我最近开始学习 PHP,遇到了为本地 XAMPP 服务器创建 Sendmail 存根的问题。我想在本地发送消息,测试。在一个特殊的 sendmail 文件夹中。我完全理解 XAMPP 带有一个 sendmail 包,用于在本地向它发送消息。

我还想看看你需要在哪些文件和文件夹中制作庄园,因为关于这个主题的答案很多,很难弄清楚。

我正在使用 Ubuntu 作为操作系统。

下面我提供了我的 index.php 的代码

<?php

echo date('H:i:s');

$arr = ['a' => 1, 'b' => 2];
echo $arr['c'];

mail('1@1.ru', 'a', 'b');
$i = 1; ?>

mailtodisk文件的PHP代码

    #!/opt/lampp/bin/php
<?php
$input = file_get_contents('php://stdin');
$filename = '/opt/lampp/mailoutput/mail-' . gmdate('Ymd-Hi-s') . '.txt';
$retry = 0;
while(is_file($filename))
{
    $filename = '/opt/lampp/mailoutput/mail-' . gmdate('Ymd-Hi-s') . '-' . ++$retry . '.txt';
}
file_put_contents($filename, $input);
php
  • 2 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-05-03 00:45:39 +0000 UTC

是否可以使用 LVM 提取物理卷而不会丢失数据?

  • 0

是否可以使用 LVM 提取物理卷而不会丢失数据?

файловая-система
  • 1 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-05-02 02:03:04 +0000 UTC

创建硬链接时是否浪费了inode?

  • 2

创建硬链接时是否浪费了inode?如果是这样,他们为什么要花钱?

linux
  • 1 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-12-09 20:14:02 +0000 UTC

如何正确地将脚本连接到 WordPress?

  • 0

我有包含在functions.php.

其中一些包括一个滑块,例如jquery.flexslider.js.

在我输入的不是脚本的命令之后不显示。

<?php
add_action( 'wp_enqueue_scripts', 'style_theme' );
add_action( 'wp_footer', 'scripts_theme' );

function style_theme() {
    wp_enqueue_style('style', get_stylesheet_uri());
    wp_enqueue_style( 'default', get_template_directory_uri() . '/assets/css/default.css' );
    wp_enqueue_style( 'layout', get_template_directory_uri() . '/assets/css/layout.css' );
    wp_enqueue_style( 'layout', get_template_directory_uri() . '/assets/css/media-queries.css' );
}

function scripts_theme() {
    wp_enqueue_script( 'init', get_template_directory_uri() . '/assets/js/init.js' );
    wp_enqueue_script( 'doubletaptogo', get_template_directory_uri() . '/assets/js/doubletaptogo.js' );
    wp_enqueue_script( 'jquery.flexslider', get_template_directory_uri() . '/assets/js/jquery.flexslider.js' );
    wp_enqueue_script( 'jquery-1.10.2.min', get_template_directory_uri() . '/assets/js/jquery-1.10.2.min.js' );
    wp_enqueue_script( 'jquery-migrate-1.2.1.min', get_template_directory_uri() . '/assets/js/jquery-migrate-1.2.1.min.js' );
    wp_enqueue_script( 'modernizr', get_template_directory_uri() . '/assets/js/modernizr.js' );
}

.php 文件的屏幕截图

连接到 header.php 文件

InitJS 文件

`/*-----------------------------------------------------------------------------------
/*
/* Init JS
/*
-----------------------------------------------------------------------------------*/

 jQuery(document).ready(function() {

/*----------------------------------------------------*/
/*  Navigation - Double Tap to Go
------------------------------------------------------*/

   $( '#nav li:has(ul)' ).doubleTapToGo();

/*----------------------------------------------------*/
/*  Back To Top Button
/*----------------------------------------------------*/
        var pxShow = 300; //height on which the button will show
        var fadeInTime = 400; //how slow/fast you want the button to show
        var fadeOutTime = 400; //how slow/fast you want the button to hide
        var scrollSpeed = 300; //how slow/fast you want the button to scroll to top. can be a value, 'slow', 'normal' or 'fast'

        // Show or hide the sticky footer button
        jQuery(window).scroll(function() {

            if (jQuery(window).scrollTop() >= pxShow) {
                jQuery("#go-top").fadeIn(fadeInTime);
            } else {
                jQuery("#go-top").fadeOut(fadeOutTime);
            }

        });

        // Animate the scroll to top
        jQuery("#go-top a").click(function() {
            jQuery("html, body").animate({scrollTop:0}, scrollSpeed);
            return false;
        });


/*----------------------------------------------------*/
/*  Flexslider
/*----------------------------------------------------*/
   $('#intro-slider').flexslider({
      namespace: "flex-",
      controlsContainer: "",
      animation: 'fade',
      controlNav: false,
      directionNav: true,
      smoothHeight: true,
      slideshowSpeed: 7000,
      animationSpeed: 600,
      randomize: false,
   });

/*----------------------------------------------------*/
/*  contact form
------------------------------------------------------*/

   $('form#contactForm button.submit').click(function() {

      $('#image-loader').fadeIn();

      var contactName = $('#contactForm #contactName').val();
      var contactEmail = $('#contactForm #contactEmail').val();
      var contactSubject = $('#contactForm #contactSubject').val();
      var contactMessage = $('#contactForm #contactMessage').val();

      var data = 'contactName=' + contactName + '&contactEmail=' + contactEmail +
               '&contactSubject=' + contactSubject + '&contactMessage=' + contactMessage;

      $.ajax({

          type: "POST",
          url: "inc/sendEmail.php",
          data: data,
          success: function(msg) {

            // Message was sent
            if (msg == 'OK') {
               $('#image-loader').fadeOut();
               $('#message-warning').hide();
               $('#contactForm').fadeOut();
               $('#message-success').fadeIn();   
            }
            // There was an error
            else {
               $('#image-loader').fadeOut();
               $('#message-warning').html(msg);
                $('#message-warning').fadeIn();
            }

          }

      });

      return false;

   });


});
`
php
  • 1 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-07-15 03:58:05 +0000 UTC

如何消除悬停时的方块抖动

  • -1

我正在为导航设置样式,并且遇到了内容在悬停时反弹的事实。可能是什么问题呢?

https://codepen.io/VadimStrelov/pen/bPyxpv

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 58px;
  &__logo {
    display: block;
    background-image: url(../img/header_logo.svg);
    background-repeat: no-repeat;
    width: 137px;
    height: 28px;
  }
  &-list {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    &__item {
      margin-left: 20px;
      color: #000;
      font-weight: 400;
      font-size: 16px;
      letter-spacing: 0.8px;
      cursor: pointer;
      padding-bottom: 8px;
    }
    &__item:hover {
      border-bottom: 3px solid #00E593;
      transition-duration: 3ms;
      padding-bottom: 5px;
    }
  }
}
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Drag</title>
</head>

<body>
  <div class="page-main">
    <header>
      <div class="header">
        <a href="#" class="header__logo"></a>
        <ul class="header-list">
          <li class="header-list__item">Home</li>
          <li class="header-list__item">About</li>
          <li class="header-list__item">Contents</li>
          <li class="header-list__item">Books</li>
          <li class="header-list__item">Education</li>
          <li class="header-list__item">Skills</li>
          <li class="header-list__item">Portfolio</li>
          <li class="header-list__item">Clients</li>
          <li class="header-list__item">Contact</li>
        </ul>
      </div>
    </header>
    <div class="wrap">
      <div class="block-book">
        <div></div>
        <div class="block-text">
          <p class="block-text__name">- By Emma Anderson</p>
          <h1 class="block-text__title">BUKEE: THE BOOK<span>A room without books is like a body without a soul</span></h1>
          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
          <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis
            iste natus error sit voluptatem accusantium doloremque.</p>
          <a href="#" class="block-text__btn">Buy this book - $15.00</a>
          <small>* Some conditions may applicable</small>
        </div>
      </div>
    </div>
  </div>
  <div class="page">
    <div class="wrap">
      <div class="block-author">
        <div class="block-text">
          <p class="block-text__name">- By Emma Anderson</p>
          <h2 class="block-text__title">Emma Anderson<span>A room without books is like a body without a soul</span></h2>
          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
          <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis
            iste natus error sit voluptatem accusantium doloremque.</p>
          <a href="#" class="block-text__btn">Read full biography</a>
        </div>
        <div></div>
      </div>
      <div class="block-counter">
        <p><span>12</span> Total published books</p>
        <p><span>5</span> Happy readers</p>
        <p><span>15,000</span> Happy readers</p>
      </div>
    </div>
  </div>
  <div class="page page-gray">
    <div class="wrap">
      <h2 class="page__title">Book Contents</h2>
      <p class="page__subtitle">Let’s see what we have covered in the book</p>
      <div class="block-about">
        <div>
          <h3>About the book</h3>
          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna ali qua. Ut enim ad minim veniam, quis nostrud exercitation ull amco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
            irure dolor in reprehenderit in voluptate velit esse cillu m dolore eu fugiat nulla pariatur.</p>
          <div>
            <p>Featured in:</p>
            <ul>
              <li>
                <a href="#"></a>
              </li>
              <li>
                <a href="#"></a>
              </li>
              <li>
                <a href="#"></a>
              </li>
            </ul>
          </div>
        </div>
        <div>
          <h3>Table of contents</h3>
          <ol>
            <li>Lorem ipsum dolor sit amet</li>
            <li>Consectetur adipisicing elit</li>
            <li>Labore et dolore magna</li>
            <li>Consectetur adipisicing elit</li>
            <li>Labore et dolore magna</li>
            <li>Lorem ipsum dolor sit amet</li>
            <li>Consectetur adipisicing elit</li>
            <li>Labore et dolore magna</li>
            <li>Consectetur adipisicing elit</li>
            <li>Labore et dolore magna</li>
          </ol>
          <button>More</button>
        </div>
      </div>
    </div>
  </div>
  <script src="../js/main.js"></script>
</body>

</html>

css3
  • 2 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-07-09 15:31:05 +0000 UTC

如何将网格框与窗口大小的宽度对齐?

  • 0

我有 8 个元素水平排列成两行。对于定位,我使用了 CSS 网格布局。进一步,在主页面布局之后,我开始调整它,但是出现了一个水平滚动,块保持原来的宽度。

如何使块对齐,拉伸以适应任何分辨率的屏幕宽度?

基本分辨率

分辨率为 1100 像素

阻止 HTML 代码

    .grid-element-one {
    width: 300px;
    height: 300px;
    background-color: #F7F0DD;
    cursor: pointer;
}
.grid-element-two {
    width: 300px;
    height: 300px;
    background-color: #F7F0DD;
    cursor: pointer;
}
.grid-element-three {
    width: 300px;
    height: 300px;
    background-color: #F7F0DD;
    cursor: pointer;
}
.grid-element-four {
    width: 300px;
    height: 300px;
    background-color: #F7F0DD;
    cursor: pointer;
}
.grid-element-one:hover {
    background-color: #ffec41;
    transition: 900ms;
}
.grid-element-two:hover {
    background-color: #FF2929;
    transition: 900ms;
}
.grid-element-three:hover {
    background-color: #4f75f4;
    transition: 900ms;
}
.grid-element-four:hover {
    background-color: #49cc63;
    transition: 900ms;
}
.block__products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "a b c d"
                         "f g e h";
    grid-gap: 20px;
}
HTML-код блока

<div class="block__products-grid wrap">
    <div class="grid-element-one"></div>
    <div class="grid-element-two"></div>
    <div class="grid-element-three"></div>
    <div class="grid-element-four"></div>
    <div class="grid-element-one"></div>
    <div class="grid-element-two"></div>
    <div class="grid-element-three"></div>
    <div class="grid-element-four"></div>
</div>

html
  • 1 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-06-29 22:44:17 +0000 UTC

布局电子邮件信函如何将两个元素放在同一级别

  • 1

元素的位置在此处输入图像描述

编码

<table border="0" cellpadding="0" cellspacing="0" style="margin:0; padding:0; background: #214B90;" width="100%">
  <tr>
    <td style="text-align: left; padding: 50px 0 75px;">
      <span style="color: #fff; font-family: Helvetica, sans-serif; font-size: 24px; font-weight: 700;">FreebiesGallery</span>
    </td>
    <td style="text-align: right; padding: 50px 0 75px;">
      <a href="#" style="color: #fff; font-family: Helvetica, sans-serif; text-decoration: none; border: 1px solid #fff; border-radius: 20px; padding: 10px 20px; font-size: 15px; font-weight: 300;">Go to Website</a>
    </td>
  </tr>
  <tr>
    <td colspan="2" style="padding-bottom: 40px;">
      <center><span style="font-family: Georgia, serif; font-style: italic; font-weight: 400; font-size: 32px; color: #fff;">Are your looking for a</span></center>
    </td>
  </tr>
  <tr>
    <td colspan="2" style="padding-bottom: 30px;">
      <center><span style="font-family: Helvetica, sans-serif; font-weight: 700; font-size: 48px; color: #fff; padding-bottom: 40px;">FREE LANCE DESIGNER</span></center>
    </td>
  </tr>
  <tr>
    <td colspan="2" style="padding-bottom: 70px;">
      <center><a style="padding: 15px 30px; font-family: Helvetica, sans-serif; text-decoration: none; color: #fff; font-weight: 400; font-size: 18px; background: #102548; border-radius: 30px;" href="#">CONTACT NOW</a></center>
    </td>
  </tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="margin:0; padding:0; background: #FFFFFF;" width="100%">
  <tr>
    <td colspan="1" style="padding-top: 80px; text-align: left;">
      <img src="img/icon.png" border="0" alt="icon" style="border-radius: 100%; border: 1px solid #E8E8E8; padding: 40px;">
    </td>
  </tr>
  <tr>
    <td colspan="1" style="text-align: left;">
      <span style="font-weight: 700; font-family: Helvetica, sans-serif; font-size: 15px; text-transform: uppercase; color: #333; padding-top: 90px;">RESPONSIVE WEB DESIGN</span>
    </td>
  </tr>
  <tr>
    <td colspan="1" style="text-align: left;">
      <span style="color: #999; font-weight: 400; font-size: 14px; line-height: 1.5;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ante urna, placerat eu euismod dictum, aliquam et sapien. Ut at risus commodo, eleifend sem cursus</span>
    </td>
  </tr>
  <tr>
    <td colspan="1" style="padding-top: 80px; text-align: right;">
      <img src="img/icon.png" border="0" alt="icon" style="border-radius: 100%; border: 1px solid #E8E8E8; padding: 40px;">
    </td>
  </tr>
  <tr>
    <td colspan="1" style="text-align: right;">
      <span style="font-weight: 700; font-family: Helvetica, sans-serif; font-size: 15px; text-transform: uppercase; color: #333; padding-top: 90px;">RESPONSIVE WEB DESIGN</span>
    </td>
  </tr>
  <tr>
    <td colspan="1" style="text-align: right;">
      <span style="color: #999; font-weight: 400; font-size: 14px; line-height: 1.5;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam ante urna, placerat eu euismod dictum, aliquam et sapien. Ut at risus commodo, eleifend sem cursus</span>
    </td>
  </tr>
</table>
html
  • 1 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-06-21 14:03:37 +0000 UTC

如何为输入中的文本设置内容宽度

  • 0

截屏

如截图所示,文本的表格宽度是必不可少的,我不知道如何设置。访问了通常的padding'i,触摸输入的宽度而不是其中文本的宽度。

输入所在的块中的 HTML 内容代码

.page-subscribe input {
  border: solid 2px #4265B7;
  border-radius: 50px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  background-color: transparent;
  width: 100%;
  display: block;
  padding: 25px 35px;
  color: #fff;
}
<div class="page-subscribe">
  <div class="wrap">
    <div class="page-subscribe-content">
      <h2><span>Subscribe</span>Signup For A Trail</h2>
      <p>Create your free account now & get 30 days free <br> trail No credit card required</p>
      <!-- Нужный элемент -->
      <input type="email" placeholder="Enter your email address">
      <!-- Нужный элемент -->
      <button class="btn-primary" type="submit">Subscribe</button>
    </div>
    <div class="page-subscribe-img">
      <img src="img/Robot.png" alt="Robot">
    </div>
  </div>
</div>

html
  • 3 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-06-11 19:01:09 +0000 UTC

如何对齐项目

  • 0

更多截图将它们对齐到同一水平

我对自适应布局有一个特定的问题

/* Обертка */

.team__inner {
    margin: 0 30px 0;
    margin-top: -20px;
}

/* Айтемы */

.team__item {
    flex-basis: 20%;
    max-height: 50%;
    overflow: hidden
    display: flex;
}
html
  • 2 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-06-04 20:14:19 +0000 UTC

如何更改 SVG 图像的颜色

  • 1

这是它在浏览器中的外观

图像所在的所有指定样式。这些样式是用 .scss 编写的

    .section-wrap {
    position: relative;

    .section-wrap__icon {

        a {
            width: 64px;
            height: 64px;
            border: 5px solid rgba(255, 255, 255, 0.25);
            position: absolute;left: 50%;
            left: 50%;
            bottom: 8%;
            transform: translate(-50%, 15px);
            z-index: 2;
            border-radius: 50%;
            background-color: $white;
        }

        .section-wrap__img {
            width: 30px;
            height: 30px;
            fill: $red; // #e74c3c;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

    }

}

通过 HTML 附加图像

<div class="section-wrap__icon">
  <a href="#">
  <img class="section-wrap__img img" src="img/icons/icon1.svg">
  </a>
  </div>

SVG 文件

    <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="icon1.svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 474.986 474.986" style="enable-background:new 0 0 474.986 474.986;" xml:space="preserve">
<path id="XMLID_3_" d="M440.904,356.937l-15.139-80.104c-0.632-3.32-2.842-6.123-5.93-7.501c-3.081-1.386-6.647-1.163-9.542,0.577
    l-69.815,42.086c-4.09,2.464-5.954,7.408-4.514,11.952c1.434,4.552,5.799,7.515,10.559,7.184l27.269-1.902
    c-26.037,34.993-65.227,49.355-110.178,53.036V153.103h22.449c3.62,2.695,8.07,4.343,12.929,4.343
    c12.021,0,21.771-9.742,21.771-21.764c0-12.029-9.75-21.771-21.771-21.771c-4.867,0-9.318,1.656-12.938,4.351h-22.441V86.789
    c12.776-8.494,21.231-22.987,21.231-39.436C284.845,21.247,263.6,0,237.493,0c-26.107,0-47.354,21.247-47.354,47.353
    c0,16.449,8.456,30.942,21.231,39.436v31.474h-22.44c-3.62-2.695-8.07-4.351-12.937-4.351c-12.021,0-21.771,9.742-21.771,21.771
    c0,12.021,9.75,21.764,21.771,21.764c4.859,0,9.309-1.648,12.929-4.343h22.448v229.162c-44.95-3.681-84.14-18.043-110.176-53.036
    l27.269,1.902c4.759,0.331,9.125-2.632,10.558-7.184c1.44-4.543-0.423-9.488-4.513-11.952l-69.816-42.086
    c-2.896-1.74-6.461-1.963-9.542-0.577c-3.088,1.378-5.298,4.181-5.93,7.501l-15.14,80.104c-0.886,4.689,1.555,9.372,5.906,11.327
    c4.351,1.965,9.472,0.686,12.399-3.088l16.287-21.008c31.843,51.565,81.914,94.736,139.664,105.942l21.854,21.854
    c4.036,4.028,10.565,4.028,14.594,0l21.854-21.854c57.75-11.198,107.828-54.377,139.672-105.942l16.287,21.008
    c2.927,3.774,8.048,5.053,12.398,3.088C439.349,366.309,441.79,361.626,440.904,356.937z M237.493,34.839
    c6.9,0,12.513,5.614,12.513,12.514c0,6.9-5.613,12.514-12.513,12.514c-6.9,0-12.515-5.614-12.515-12.514
    C224.979,40.453,230.593,34.839,237.493,34.839z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

我使用的颜色变量。_variables.scss 文件

$white: #fff;
$black: #000;

$white-gray: #f4f5f9;
$gray-light: #cbc6c0;

$red: #e74c3c;
html
  • 1 个回答
  • 10 Views
Martin Hope
Frenc Olesov
Asked: 2020-06-01 15:32:50 +0000 UTC

SVG 文件未显示

  • 2

HTML中的连接:

    <?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
     viewBox="0 0 474.986 474.986" style="enable-background:new 0 0 474.986 474.986;" xml:space="preserve">
<path id="XMLID_3_" d="M440.904,356.937l-15.139-80.104c-0.632-3.32-2.842-6.123-5.93-7.501c-3.081-1.386-6.647-1.163-9.542,0.577
    l-69.815,42.086c-4.09,2.464-5.954,7.408-4.514,11.952c1.434,4.552,5.799,7.515,10.559,7.184l27.269-1.902
    c-26.037,34.993-65.227,49.355-110.178,53.036V153.103h22.449c3.62,2.695,8.07,4.343,12.929,4.343
    c12.021,0,21.771-9.742,21.771-21.764c0-12.029-9.75-21.771-21.771-21.771c-4.867,0-9.318,1.656-12.938,4.351h-22.441V86.789
    c12.776-8.494,21.231-22.987,21.231-39.436C284.845,21.247,263.6,0,237.493,0c-26.107,0-47.354,21.247-47.354,47.353
    c0,16.449,8.456,30.942,21.231,39.436v31.474h-22.44c-3.62-2.695-8.07-4.351-12.937-4.351c-12.021,0-21.771,9.742-21.771,21.771
    c0,12.021,9.75,21.764,21.771,21.764c4.859,0,9.309-1.648,12.929-4.343h22.448v229.162c-44.95-3.681-84.14-18.043-110.176-53.036
    l27.269,1.902c4.759,0.331,9.125-2.632,10.558-7.184c1.44-4.543-0.423-9.488-4.513-11.952l-69.816-42.086
    c-2.896-1.74-6.461-1.963-9.542-0.577c-3.088,1.378-5.298,4.181-5.93,7.501l-15.14,80.104c-0.886,4.689,1.555,9.372,5.906,11.327
    c4.351,1.965,9.472,0.686,12.399-3.088l16.287-21.008c31.843,51.565,81.914,94.736,139.664,105.942l21.854,21.854
    c4.036,4.028,10.565,4.028,14.594,0l21.854-21.854c57.75-11.198,107.828-54.377,139.672-105.942l16.287,21.008
    c2.927,3.774,8.048,5.053,12.398,3.088C439.349,366.309,441.79,361.626,440.904,356.937z M237.493,34.839
    c6.9,0,12.513,5.614,12.513,12.514c0,6.9-5.613,12.514-12.513,12.514c-6.9,0-12.515-5.614-12.515-12.514
    C224.979,40.453,230.593,34.839,237.493,34.839z"/>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

UPD 在片段中,它显示在站点的此处,但是如果将其保存到单独的文件*.svg中,则在浏览器中启动时会出错。

svg
  • 1 个回答
  • 10 Views

Sidebar

Stats

  • 问题 10021
  • Answers 30001
  • 最佳答案 8000
  • 用户 6900
  • 常问
  • 回答
  • Marko Smith

    我看不懂措辞

    • 1 个回答
  • Marko Smith

    请求的模块“del”不提供名为“default”的导出

    • 3 个回答
  • Marko Smith

    "!+tab" 在 HTML 的 vs 代码中不起作用

    • 5 个回答
  • Marko Smith

    我正在尝试解决“猜词”的问题。Python

    • 2 个回答
  • Marko Smith

    可以使用哪些命令将当前指针移动到指定的提交而不更改工作目录中的文件?

    • 1 个回答
  • Marko Smith

    Python解析野莓

    • 1 个回答
  • Marko Smith

    问题:“警告:检查最新版本的 pip 时出错。”

    • 2 个回答
  • Marko Smith

    帮助编写一个用值填充变量的循环。解决这个问题

    • 2 个回答
  • Marko Smith

    尽管依赖数组为空,但在渲染上调用了 2 次 useEffect

    • 2 个回答
  • Marko Smith

    数据不通过 Telegram.WebApp.sendData 发送

    • 1 个回答
  • Martin Hope
    Alexandr_TT 2020年新年大赛! 2020-12-20 18:20:21 +0000 UTC
  • Martin Hope
    Alexandr_TT 圣诞树动画 2020-12-23 00:38:08 +0000 UTC
  • Martin Hope
    Air 究竟是什么标识了网站访问者? 2020-11-03 15:49:20 +0000 UTC
  • Martin Hope
    Qwertiy 号码显示 9223372036854775807 2020-07-11 18:16:49 +0000 UTC
  • Martin Hope
    user216109 如何为黑客设下陷阱,或充分击退攻击? 2020-05-10 02:22:52 +0000 UTC
  • Martin Hope
    Qwertiy 并变成3个无穷大 2020-11-06 07:15:57 +0000 UTC
  • Martin Hope
    koks_rs 什么是样板代码? 2020-10-27 15:43:19 +0000 UTC
  • Martin Hope
    Sirop4ik 向 git 提交发布的正确方法是什么? 2020-10-05 00:02:00 +0000 UTC
  • Martin Hope
    faoxis 为什么在这么多示例中函数都称为 foo? 2020-08-15 04:42:49 +0000 UTC
  • Martin Hope
    Pavel Mayorov 如何从事件或回调函数中返回值?或者至少等他们完成。 2020-08-11 16:49:28 +0000 UTC

热门标签

javascript python java php c# c++ html android jquery mysql

Explore

  • 主页
  • 问题
    • 热门问题
    • 最新问题
  • 标签
  • 帮助

Footer

RError.com

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

帮助

© 2023 RError.com All Rights Reserve   沪ICP备12040472号-5