14 Matching Annotations
  1. Mar 2025
    1. 陰イオンと陽イオンは互いに電気的に引き合い、イオン結合する[13]。ただし共有結合の場合とは異なり、通常の状態では陰イオンと陽イオン一組で明確な形の分子を構成することはなく、大量の陰イオンと陽イオンが結び付き合ってイオン結晶を形成する[13]。

      イオン結晶(イオン結合結晶, 英: ionic crystal)

    2. イオン結合では、ある原子にある電子が一つ以上、別の原子に移動してしまう。移動により電子を失った側を陽イオンもしくはカチオンといい、電子を得た側を陰イオンもしくはアニオンといい、陰イオンまたは陽イオンの事をイオンという[12]。
    3. こうして電磁気的に引きつけられた原子同士の分子内結合を記述する為のパラメータとして、電気陰性度という尺度がある。 これは原子がどの程度原子外にある電子を引きつけるかを示す尺度である。結合した2つの原子の電気陰性度に極端な差異がある場合は、電気陰性度が大きい原子の方に最外殻電子が完全に移動してしまう。この状態における分子内結合をイオン結合という[6]。 それとは逆に両者の電気陰性度が完全に釣り合っているときは、最外殻電子を2つの原子で「共有」する状態になる。この状態を非極性共有結合という[6]。電気陰性度が両者の中間にある場合は、最外殻電子を一方の原子にやや引きつけた「極性」のある共有状態になる。この状態を極性共有結合という[6]。非極性または極性の共有結合の事を共有結合という。

      極性:polarityとは分子の電気的な偏りで、電気陰性度の差によって生じます

      イオン結合(イオンけつごう、英語:ionic bond)

      共有結合(きょうゆうけつごう、(英: covalent bond)

      共有結合とは何か?極性と非極性 (Chemistry: What is a Covalent Bond? (Polar and Nonpolar)

  2. Dec 2024
    1. Ionic is highly regarded for its easy integration with a wide range of modern frameworks and technologies. This compatibility simplifies mobile app development for developers using popular frameworks like Angular, React, and Vue.js. The flexibility of the Ionic platform allows developers to choose the best-suited framework for each project. Additionally, Ionic offers a rich selection of plugins and integrations. These tools help developers seamlessly add diverse features and functionalities to mobile applications, making customization straightforward.

      The Ionic framework has emerged as a top contender for modern app development, offering seamless performance, cross-platform compatibility, and cost-efficiency. Its ability to integrate with multiple APIs and tools ensures faster development cycles. Businesses can leverage Ionic for progressive web apps and native-like mobile apps without the overhead of maintaining separate codebases.

  3. Nov 2020
    1. import dynamic from 'next/dynamic'; const IonHeader = dynamic( async () => { const mod = await import('@ionic/react'); return mod.IonHeader; }, { ssr: false } // this is what makes it work ); export default () => ( <IonHeader> </IonHeader> );
  4. Oct 2018
  5. Sep 2018
    1. We use svg from font-awesome 5 in our tabs. You can add them in your assets folder and reference them directly <ion-tab icon="/assets/font-awesome/light/bars.svg" label="{{managementTabTitle}}" href="/tabs/tab/(management:management)">
  6. Dec 2016
    1. This issue with primitives can be easily avoided by following the "best practice" of always have a '.' in your ng-models – watch 3 minutes worth. Misko demonstrates the primitive binding issue with ng-switch.

      Here's the solution to the problem of binding an input and a title in the context of an Ionic view. It boils down to scope!

  7. Nov 2016
    1. Note: We do not recommend using resolve of AngularUI Router. The recommended approach is to execute any logic needed before beginning the state transition.

      Re: APOD, note that Ionic doesn't recommend the use of resolve. This is the best argument not to!

  8. May 2016
    1. bower_components

      Ionic installs bower components (bower packages) into the project's lib folder:

      www/lib 
      

      This behaviour is defined in the projects .bowerrc file, which looks like this:

      {
        "directory": "www/lib"
      }
      

      The project .bowerrc file may be found at the same level as the www folder.

      Note that if you install angular-chart this way, you don't need to install Chart.js separately; it is one of the dependencies that bower will install for you. Of course, you must include the script tag that references the Chart.js file as usual!

      Finally, if you want to link angular-chart.css you must follow the same procedure.