月度归档:2020年11月

使用 CSS 渐变

CSS 渐变 <image> 类型的一种特殊类型 <gradient> 表示,由两种或多种颜色之间的渐进过渡组成。您可以选择三种类型的渐变:线性 (由 linear-gradient 函数创建),径向(由 radial-gradient() 函数创建) 和圆锥 (由 conic-gradient 函数创建)。您还可以使用 repeating-linear-gradient 和 repeating-radial-gradient 函数创建重复渐变。

渐变可以在任何使用 <image> 的地方使用,例如在背景中。 由于渐变是动态生成的,因此它们可以消除对传统用于实现类似效果的栅格图像文件的需求。 此外,由于渐变是由浏览器生成的,因此在放大时它们看起来比栅格图像更好,并且可以动态调整大小。

我们将从线性渐变开始介绍,然后以线性渐变为例介绍所有渐变类型支持的功能,然后继续介绍径向渐变,圆锥渐变和重复渐变。

使用线性渐变

线性渐变创建了一条沿直线前进的颜色带。

基础线性渐变

要创建最基本的渐变类型,您只需指定两种颜色即可。 这些被称为色标。 至少指定两个色标,也可以指定任意数量。

.simple-linear {
  background: linear-gradient(blue, pink);
}

改变渐变方向

默认情况下,线性渐变的方向是从上到下, 你可以指定一个值来改变渐变的方向。

.horizontal-gradient {
  background: linear-gradient(to right, blue, pink);
}

对角线渐变

你甚至可以设置渐变方向为从一个对角到另一个对角。

.diagonal-gradient {
  background: linear-gradient(to bottom right, blue, pink);
}

设置渐变角度

如果你想要更精确地控制渐变的方向,你可以给渐变设置一个具体的角度。

.angled-gradient {
  background: linear-gradient(70deg, blue, pink);
}

在使用角度的时候, 0deg 代表渐变方向为从下到上, 90deg 代表渐变方向为从左到右,诸如此类正角度都属于顺时针方向。 而负角度意味着逆时针方向。

linear_redangles.png

声明颜色和创建效果

所有的CSS渐变类型都是一个位置依赖的颜色范围。CSS渐变产生的颜色可以随位置不断变化,从而产生平滑的颜色过渡。也可以创建纯色带和两种颜色之间的硬过渡。以下内容适用于所有渐变函数:

使用多种颜色

无需局限于使用两种颜色,你想使用多少种颜色都可以! 默认情况下,所设置颜色会均匀分布在渐变路径中。

.auto-spaced-linear-gradient {
  background: linear-gradient(red, yellow, blue, orange);
}

颜色终止位置

你不需要让你设置的颜色在默认位置终止。 你可以通过给每个颜色设置0,1%或者2%或者其他的绝对数值来调整它们的位置。如果你将位置设置为百分数, 0% 表示起始点, 而100%表示终点,但是如果需要的话你也可以设置这个范围之外的其他值来达到你想要的效果。如果有些位置你没有明确设置,那么它将会被自动计算,第一种颜色会在0%处停止,而最后一种颜色是100%,至于其他颜色则是在它邻近的两种颜色的中间停止。 

.multicolor-linear { 
   background: linear-gradient(to left, lime 28px, red 77%, cyan);
}

创建实线

要在两种颜色之间创建一条硬线,即创建一个条纹而不是逐渐过渡,可以将相邻的颜色停止设置为相同的位置。在此示例中,两种颜色在50%标记处共享一个颜色停止点,即渐变的一半:

.striped { 
   background: linear-gradient(to bottom left, cyan 50%, palegoldenrod 50%); 
}

渐变提示

默认情况下,渐变会平滑地从一种颜色过渡到另一种颜色。你可以通过设置一个值来将渐变的中心点移动到指定位置。 在如下示例中, 我们将渐变的中心点由50%设为10%。

.color-hint {
  background: linear-gradient(blue, 10%, pink);
}
.simple-linear {
  background: linear-gradient(blue, pink);
}

创建色带和条纹

要在渐变中包含一个实心的非过渡颜色区域,请包含颜色起止点的两个位置。颜色起止点可以有两个位置,这相当于两个连续颜色在不同位置具有相同的颜色起止点。颜色将在第一个颜色起止点时达到完全饱和,保持该饱和度到第二个颜色起止点,并通过相邻颜色起止点的第一个位置过渡到相邻颜色起止点的颜色。

.multiposition-stops { 
   background: linear-gradient(to left, 
       lime 20%, red 30%, red 45%, cyan 55%, cyan 70%, yellow 80% );  
   background: linear-gradient(to left, 
       lime 20%, red 30% 45%, cyan 55% 70%, yellow 80% ); 
}
.multiposition-stop2 { 
   background: linear-gradient(to left, 
      lime 25%, red 25%, red 50%, cyan 50%, cyan 75%, yellow 75% ); 
   background: linear-gradient(to left, 
      lime 25%, red 25% 50%, cyan 50% 75%, yellow 75% ); 
}

In the first example above, the lime goes from the 0% mark, which is implied, to the 20% mark, transitions from lime to red over the next 10% of the width of the gradient, reach solid red at the 30% mark, and staying solid red up until 45% through the gradient, where it fades to cyan, being fully cyan for 15% of the gradient, and so on.

In the second example, the second color stop for each color is at the same location as the first color stop for the adjacent color, creating a striped effect.

In both examples, the gradient is written twice: the first is the CSS Images Level 3 method of repeating the color for each stop and the second example is the CSS Images Level 4 multiple color stop method of including two color-stop-lengths in a linear-color-stop declaration.

Controlling the progression of a gradient

By default, a gradient evenly progresses between the colors of two adjacent color stops, with the midpoint between those two color stops being the midpoint color value. You can control the interpolation, or progression, between two color stops by including a color hint location. In this example, the color reaches the midpoint between lime and cyan 20% of the way through the gradient rather than 50% of the way through. The second example does not contain the hint to hilight the difference the color hint can make:

.colorhint-gradient {
  background: linear-gradient(to top, black, 20%, cyan);
}
.regular-progression { 
  background: linear-gradient(to top, black, cyan);
}

Overlaying gradients

Gradients support transparency, so you can stack multiple backgrounds to achieve some pretty fancy effects. The backgrounds are stacked from top to bottom, with the first specified being on top.

.layered-image {
  background: linear-gradient(to right, transparent, mistyrose),
      url("https://mdn.mozillademos.org/files/15525/critters.png");
}

Stacked gradients

You can even stack gradients with other gradients. As long as the top gradients aren’t entirely opaque, the gradients below will still be visible.

.stacked-linear {
  background:
      linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
      linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
      linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
}

Using radial gradients

Radial gradients are similar to linear gradients, except that they radiate out from a central point. You can dictate where that central point is. You can also make them circular or elliptical.

A basic radial gradient

As with linear gradients, all you need to create a radial gradient are two colors. By default, the center of the gradient is at the 50% 50% mark, and the gradient is elliptical matching the aspect ratio of it’s box:

.simple-radial {
  background: radial-gradient(red, blue);
}

Positioning radial color stops

Again like linear gradients, you can position each radial color stop with a percentage or absolute length.

.radial-gradient {
  background: radial-gradient(red 10px, yellow 30%, #1e90ff 50%);
}

Positioning the center of the gradient

You can position the center of the gradient with keyterms, percentage, or absolute lengths, length and percentage values repeating if only one is present, otherwise in the order of position from the left and position from the top.

.radial-gradient {
  background: radial-gradient(at 0% 30%, red 10px, yellow 30%, #1e90ff 50%);
}

Sizing radial gradients

Unlike linear gradients, you can specify the size of radial gradients. Possible values include closest-corner, closest-side, farthest-corner, and farthest-side, with farthest-corner being the default.

Example: closest-side for ellipses

This example uses the closest-side size value, which means the size is set by the distance from the starting point (the center) to the closest side of the enclosing box.

.radial-ellipse-side {
  background: radial-gradient(ellipse closest-side,
      red, yellow 10%, #1e90ff 50%, beige);
}

Example: farthest-corner for ellipses

This example is similar to the previous one, except that its size is specified as farthest-corner, which sets the size of the gradient by the distance from the starting point to the farthest corner of the enclosing box from the starting point.

.radial-ellipse-far {
  background: radial-gradient(ellipse farthest-corner at 90% 90%,
      red, yellow 10%, #1e90ff 50%, beige);
}

Example: closest-side for circles

This example uses closest-side, which makes the circle’s size to be the distance between the starting point (the center) and the closest side. The circle’s radius is the distance between the center of the gradient and the closest edge, which due to the positioning of the 25% from the top and 25% from the bottom, is closest to the bottom, since the height in this case is narrower than the width.

.radial-circle-close {
  background: radial-gradient(circle closest-side at 25% 75%,
      red, yellow 10%, #1e90ff 50%, beige);
}

Stacked radial gradients

Just like linear gradients, you can also stack radial gradients. The first specified is on top, the last on the bottom.

.stacked-radial {
  background: 
      radial-gradient(circle at 50% 0,
        rgba(255,0,0,.5),
        rgba(255,0,0,0) 70.71%),
      radial-gradient(circle at 6.7% 75%,
        rgba(0,0,255,.5),
        rgba(0,0,255,0) 70.71%),
      radial-gradient(circle at 93.3% 75%,
        rgba(0,255,0,.5),
        rgba(0,255,0,0) 70.71%) beige;
  border-radius: 50%;
}

Using repeating gradients

The linear-gradient and radial-gradient() properties don’t support automatically repeated color stops. However, the repeating-linear-gradient and repeating-radial-gradient properties are available to offer this functionality.

The size of the gradient line that repeats is the length between the first color stop value and the last color stop length value. If the last color stop has just a color and no color stop length, the value defaults to 0, meaning the linear gradient will not repeat and the radial gradient will only repeat if the radius of the gradient is smaller than the length between the center of the gradient and the farthest corner.

Repeating linear gradients

This example uses repeating-linear-gradient to create a gradient that progresses repeatedly in a straight line. The colors get cycled over again as the gradient repeats. In this case the gradient line is 10px long.

.repeating-linear {
  background: repeating-linear-gradient(-45deg, red, red 5px, blue 5px, blue 10px);
}

Multiple repeating linear gradients

Similar to regular linear and radial gradients, you can include multiple gradients, one on top of the other. This only makes sense if the gradients are partially transparent allowing subsequent gradients to show through the transparent areas, or if you include different background-sizes, optionally with different background-position property values, for each gradient image. We are using transparency.

In this case the gradient lines are 300px, 230px, and 300px long.

.multi-repeating-linear {
  background:
      repeating-linear-gradient(190deg, rgba(255, 0, 0, 0.5) 40px,
        rgba(255, 153, 0, 0.5) 80px, rgba(255, 255, 0, 0.5) 120px,
        rgba(0, 255, 0, 0.5) 160px, rgba(0, 0, 255, 0.5) 200px,
        rgba(75, 0, 130, 0.5) 240px, rgba(238, 130, 238, 0.5) 280px,
        rgba(255, 0, 0, 0.5) 300px),
      repeating-linear-gradient(-190deg, rgba(255, 0, 0, 0.5) 30px,
        rgba(255, 153, 0, 0.5) 60px, rgba(255, 255, 0, 0.5) 90px,
        rgba(0, 255, 0, 0.5) 120px, rgba(0, 0, 255, 0.5) 150px,
        rgba(75, 0, 130, 0.5) 180px, rgba(238, 130, 238, 0.5) 210px,
        rgba(255, 0, 0, 0.5) 230px),
      repeating-linear-gradient(23deg, red 50px, orange 100px,
        yellow 150px, green 200px, blue 250px,
        indigo 300px, violet 350px, red 370px);
}

Plaid gradient

To create plaid we include several overlapping gradients with transparency. In the first background declaration we listed every color stop separately. The second background property declaration using the multiple position color stop syntax:

.plaid-gradient {
  background:
      repeating-linear-gradient(90deg, transparent, transparent 50px,
        rgba(255, 127, 0, 0.25) 50px, rgba(255, 127, 0, 0.25) 56px,
        transparent 56px, transparent 63px,
        rgba(255, 127, 0, 0.25) 63px, rgba(255, 127, 0, 0.25) 69px,
        transparent 69px, transparent 116px,
        rgba(255, 206, 0, 0.25) 116px, rgba(255, 206, 0, 0.25) 166px),
      repeating-linear-gradient(0deg, transparent, transparent 50px,
        rgba(255, 127, 0, 0.25) 50px, rgba(255, 127, 0, 0.25) 56px,
        transparent 56px, transparent 63px,
        rgba(255, 127, 0, 0.25) 63px, rgba(255, 127, 0, 0.25) 69px,
        transparent 69px, transparent 116px,
        rgba(255, 206, 0, 0.25) 116px, rgba(255, 206, 0, 0.25) 166px),
      repeating-linear-gradient(-45deg, transparent, transparent 5px,
        rgba(143, 77, 63, 0.25) 5px, rgba(143, 77, 63, 0.25) 10px),
      repeating-linear-gradient(45deg, transparent, transparent 5px,
        rgba(143, 77, 63, 0.25) 5px, rgba(143, 77, 63, 0.25) 10px);

  background:
      repeating-linear-gradient(90deg, transparent 0 50px,
        rgba(255, 127, 0, 0.25) 50px 56px,
        transparent 56px 63px,
        rgba(255, 127, 0, 0.25) 63px 69px,
        transparent 69px 116px,
        rgba(255, 206, 0, 0.25) 116px 166px),
      repeating-linear-gradient(0deg, transparent 0 50px,
        rgba(255, 127, 0, 0.25) 50px 56px,
        transparent 56px 63px,
        rgba(255, 127, 0, 0.25) 63px 69px,
        transparent 69px 116px,
        rgba(255, 206, 0, 0.25) 116px 166px),
      repeating-linear-gradient(-45deg, transparent 0 5px,
        rgba(143, 77, 63, 0.25) 5px 10px),
      repeating-linear-gradient(45deg, transparent 0 5px,
        rgba(143, 77, 63, 0.25) 5px 10px);
}

Repeating radial gradients

This example uses repeating-radial-gradient to create a gradient that radiates repeatedly from a central point. The colors get cycled over and over as the gradient repeats.

.repeating-radial {
  background: repeating-radial-gradient(black, black 5px, white 5px, white 10px);
}

Multiple repeating radial gradients

.multi-target {
  background:
      repeating-radial-gradient(ellipse at 80% 50%,rgba(0,0,0,0.5),
        rgba(0,0,0,0.5) 15px, rgba(255,255,255,0.5) 15px,
        rgba(255,255,255,0.5) 30px) top left no-repeat, 
      repeating-radial-gradient(ellipse at 20% 50%,rgba(0,0,0,0.5),
        rgba(0,0,0,0.5) 10px, rgba(255,255,255,0.5) 10px,
        rgba(255,255,255,0.5) 20px) top left no-repeat yellow;
  background-size: 200px 200px, 150px 150px;
}

Plaid gradient

To create plaid we include several overlapping gradients with transparency. In the first background declaration we listed every color stop separately. The second background property declaration using the multiple position color stop syntax:

<div class="plaid-gradient"></div>
div {
  width: 200px;
  height: 200px;
}
.plaid-gradient {
  background:
      repeating-linear-gradient(90deg, transparent, transparent 50px,
        rgba(255, 127, 0, 0.25) 50px, rgba(255, 127, 0, 0.25) 56px,
        transparent 56px, transparent 63px,
        rgba(255, 127, 0, 0.25) 63px, rgba(255, 127, 0, 0.25) 69px,
        transparent 69px, transparent 116px,
        rgba(255, 206, 0, 0.25) 116px, rgba(255, 206, 0, 0.25) 166px),
      repeating-linear-gradient(0deg, transparent, transparent 50px,
        rgba(255, 127, 0, 0.25) 50px, rgba(255, 127, 0, 0.25) 56px,
        transparent 56px, transparent 63px,
        rgba(255, 127, 0, 0.25) 63px, rgba(255, 127, 0, 0.25) 69px,
        transparent 69px, transparent 116px,
        rgba(255, 206, 0, 0.25) 116px, rgba(255, 206, 0, 0.25) 166px),
      repeating-linear-gradient(-45deg, transparent, transparent 5px,
        rgba(143, 77, 63, 0.25) 5px, rgba(143, 77, 63, 0.25) 10px),
      repeating-linear-gradient(45deg, transparent, transparent 5px,
        rgba(143, 77, 63, 0.25) 5px, rgba(143, 77, 63, 0.25) 10px);

  background:
      repeating-linear-gradient(90deg, transparent 0 50px,
        rgba(255, 127, 0, 0.25) 50px 56px,
        transparent 56px 63px,
        rgba(255, 127, 0, 0.25) 63px 69px,
        transparent 69px 116px,
        rgba(255, 206, 0, 0.25) 116px 166px),
      repeating-linear-gradient(0deg, transparent 0 50px,
        rgba(255, 127, 0, 0.25) 50px 56px,
        transparent 56px 63px,
        rgba(255, 127, 0, 0.25) 63px 69px,
        transparent 69px 116px,
        rgba(255, 206, 0, 0.25) 116px 166px),
      repeating-linear-gradient(-45deg, transparent 0 5px,
        rgba(143, 77, 63, 0.25) 5px 10px),
      repeating-linear-gradient(45deg, transparent 0 5px,
        rgba(143, 77, 63, 0.25) 5px 10px);
}

原文:https://developer.mozilla.org/zh-CN/docs/Web/Guide/CSS/Using_CSS_gradients

参考:css3背景颜色渐变属性

微信小程序设置 backgroundColor 无效的问题

当我们在微信小程序 json 中设置 backgroundColor 时,实际在电脑的模拟器中根本看不到效果。

这是因为 backgroundColor 指的窗体背景颜色,而不是页面的背景颜色,即窗体下拉刷新或上拉加载时露出的背景。在电脑的模拟器中是看不到这个动作的,所以会让人误以为这个配置是无效的。

如果要设置页面背景颜色,得在 wxss 中自定义样式,如下:

page {
    background-color: #eee;
}

CSS—display详解

 inline

  常用的inline就是文字和图片,其实inline真没什么好说的,大家可以把它想象成一个杯子里的水,它是“流”,是没有大小和形状的,它的宽度取决于父容器的宽度。

  因此,针对inline的标签,你设置宽度和高度是无效的,通过监控可以知道,该元素实际的宽度和高度都是auto,并不是我们设定的值。

  一个很基础的问题:如何把inline元素转换成“块”元素?相信绝大部分人的回答是display:block,但是你应该知道这不是一个唯一的答案。至少我设置display:table也是可以的吧?

       还有两种情况你应该去了解(如果你不知道的话):

       第一,对inline元素设置float

       还是刚才那个例子,我们对span元素添加一个float:left,运行看看效果,你就会大吃一惊。从显示的效果和监控的结果上看来,span元素已经“块”化。注意,上一节刚刚讲完float,不要忘记float的“破坏性”、“包裹性”,在这里同样适用。

       第二,对inline元素设置position:absolute/fixed

       还是有同一个例子做演示,这次在span元素上加上absolute/fixed,效果大家应该能猜到,和加上float的效果相同。至于absolute/fixed有什么特性,会在下一节介绍position时提到。

3. block

  本系列有一节重点讲解了《盒子模型》,不知道大家看没看过,或者说你已经很了解盒子模型了。

  其实对于block,我觉得就是“盒子模型”。一个元素设置了block,它就必须遵循盒子模型的规则。因此,这里也不再去详细写它了,大家可以去盒子模型那一节好好看看,就那么点内容。

4. inline-block

  这个话题还得从《浏览器默认样式》这一节开始。浏览器默认样式中规定了几个html元素为display:inline-block,回顾一下。

  初学者对于inline-block可能比较陌生,没关系,一步一步来。首先,你应该知道inline是什么样子的,就是一般的文字、图片;其次,你应该知道block是什么样子的,一般的div就是;最后,inline-block顾名思义,它既有inline的特性,又有block的特性,大家可以想想一般的button、input是什么样子的。

  那button举例子。我们在页面中输入若干个<button>,发现它们是“流”式排列的(可以对比一下若干个<div>的排列方式)。但是针对一个button,我们还可以自定义修改它的形状,这样就有“块”的特征。

  因此,inline-block的特点可以总结为:外部看来是“流”,但是自身确实一个“块”。不知道大家理解也无?

1.解释一下display的几个常用的属性值,inline , block, inline-block

  • inline:
    1. 使元素变成行内元素,拥有行内元素的特性,即可以与其他行内元素共享一行,不会独占一行. 
    2. 不能更改元素的height,width的值,大小由内容撑开. 
    3. 可以使用padding,margin的left和right产生边距效果,但是top和bottom就不行.
  • block:
    1. 使元素变成块级元素,独占一行,在不设置自己的宽度的情况下,块级元素会默认填满父级元素的宽度. 
    2. 能够改变元素的height,width的值. 
    3. 可以设置padding,margin的各个属性值,top,left,bottom,right都能够产生边距效果.
  •  inline-block:
    1. 结合了inline与block的一些特点,结合了上述inline的第1个特点和block的第2,3个特点.
    2. 用通俗的话讲,就是不独占一行的块级元素。如图:

图一:

图二:

两个图可以看出,display:inline-block后块级元素能够在同一行显示,有人这说不就像浮动一样吗。没错,display:inline-block的效果几乎和浮动一样,但也有不同,接下来讲一下inline-block和浮动的比较。

2.inline-block布局 vs 浮动布局

    a.不同之处:对元素设置display:inline-block ,元素不会脱离文本流,而float就会使得元素脱离文本流,且还有父元素高度坍塌的效果

    b.相同之处:能在某程度上达到一样的效果

  我们先来看看这两种布局:
图一:display:inline-block

图二:对两个孩子使用float:left,我在上一篇浮动布局讲过,这是父元素会高度坍塌,所以要闭合浮动,对box使用overflow:hidden,效果如下:

>>乍一看两个都能做到几乎相同的效果,(仔细看看display:inline-block中有间隙问题,这个留到下面再讲)

  c.浮动布局不太好的地方:参差不齐的现象,我们看一个效果:
图三: 

图四: 

>>从图3,4可以看出浮动的局限性在于,若要元素排满一行,换行后还要整齐排列,就要子元素的高度一致才行,不然就会出现图三的效果,而inline-block就不会。

3.inline-block存在的小问题:

  a.上面可以看到用了display:inline-block后,存在间隙问题,间隙为4像素,这个问题产生的原因是换行引起的,因为我们写标签时通常会在标签结束符后顺手打个回车,而回车会产生回车符,回车符相当于空白符,通常情况下,多个连续的空白符会合并成一个空白符,而产生“空白间隙”的真正原因就是这个让我们并不怎么注意的空白符。

  b.去除空隙的方法:
  1.对父元素添加,{font-size:0},即将字体大小设为0,那么那个空白符也变成0px,从而消除空隙
  现在这种方法已经可以兼容各种浏览器,以前chrome浏览器是不兼容的
图一:

  c.浏览器兼容性:ie6/7是不兼容 display:inline-block的所以要额外处理一下:
  在ie6/7下:
  对于行内元素直接使用{dislplay:inline-block;}
  对于块级元素:需添加{display:inline;zoom:1;}

4.总结:

  display:inline-block的布局方式和浮动的布局方式,究竟使用哪个,我觉得应该根据实际情况来决定的:
  a.对于横向排列东西来说,我更倾向与使用inline-block来布局,因为这样清晰,也不用再像浮动那样清除浮动,害怕布局混乱等等。
  b.对于浮动布局就用于需要文字环绕的时候,毕竟这才是浮动真正的用武之地,水平排列的是就交给inline-block了。

原文:https://www.cnblogs.com/moxuexiaotong/p/10071072.html

经济社会学

一、经济社会学的界定

现实观:经济行为是社会行为的核心部分

理论观:社会学、经济学都不是孤岛,学科发展有交叉也需要交流

(一)什么事经济社会学?最早的名称:1898年涂尔干《社会学年鉴》中对社会学的分类

  1. [日]富永健一:《经济社会学》:“经济社会学,是把经济行为及经济体系分别看作社会行为及社会体系中的一种形态或下属部门。从这种观点触发,使用社会学的概念工具及理论体系,说明经济行为及经济体系的经济社会学是社会学的一个外延的独立分支。”

第三方支付接口搜集(附下载)

刚整理的几个接口文档记录

支付接口搜集 08年1月

第三方支付接口

1.       快钱支付

2.       支付宝

3.       YeePay易宝

4.       邮局支付(网汇通)

5.       安付通

6.       网银(chinabank)

7.       PayPal贝宝

8.       ips环迅支付

9.       腾讯财付通

10.   NPS网上支付系统

1.快钱支付(银行/邮政汇) (https://www.99bill.com/website/)

联系方式: http://www.99bill.com/seashell/html/corp/contactus.html

网关地址: https://www.99bill.com/webapp/receiveMerchantInfoAction.do/

程序参考文档: 见附件快钱接口.rar

特点:

1.支持19种国内银行在线支付,

2.支持2种线下支付方式: (在线生交易号码,客户至银行柜台或者邮局依此号码汇款,参考下图)

a.通过邮局汇款

b.通过银行柜台汇款

提供邮件号码或者手机号码后会将信息发至相应联系工具中

银行前台结算方式图

2.支付宝支付(https://www.alipay.com/)

联系方式: https://www.alipay.com/static/aboutalipay/contact.htm

网关地址: https://www.alipay.com/cooperate/gateway.do

签约入口: https://www.alipay.com/cooperate/btools_shop.htm

程序参考文档: 见附件支付宝.rar

特点:

1.支持国内14种银行在线支付

2.支持支付宝帐户余额直接付款

3.支持”支付宝卡通”付款(映射至用户银行卡)

4.支持邮政”网汇e”

5.支付宝在国内拥有很大数量的用户,为”淘宝网”的支付工具;

6.提供” 合并支付”功能,即” 是在对交易进行付款的时候,可以选择“等待买家付款”类型的交易,只用一次支付过程就实现了多笔交易的支付,提高了支付操作的效率和易用性。”(http://help.alipay.com/support/help_detail.htm?help_id=18756)

3.YeePay易宝支付 (http://www.yeepay.com/)

联系方式: http://www.yeepay.com/zizhu/help.html

网关地址: 官方提供编程接口,DLL等相关工具

程序参考文档:见附件易宝支付

特点:

1.支持多家银行;

2.支持易宝会员支付

3.支持电话支付  易宝支持工商银行95588,招商银行95555,建设银行95533,民生银行95568

4.积分支付(通卡)

5.支持手机银行支付 参考: http://www.yeepay.com/help/html/help26.html

6.为会员提供收款链接服务

这是专为会员账户提供的免费收款服务。收款链接是直通会员账户的在线支付链接网址,如果您把自己的账户收款链接告知付款人(可以通过邮件、QQ、论坛), 当付款人在浏览器里打开这个链接时,就能通过在线支付方式从银行卡划款到您的会员账户里。目前,收款链接支持国内19家银行的数十种银行卡的人民币账户支付。

 参考: http://www.yeepay.com/help/html/help019.html

7.提供 商户与企业(B2B)支付方式

独家支持工商银行(全国)深圳发展银行(全国),B2B在线支付

8.提供快捷查单服务

9.自助接入服务,自助商户  参考: http://www.yeepay.com/zizhu/index.html

4.邮局支付(网汇通) http://www.udpay.com.cn/

联系方式: https://www.udpay.com.cn/jsp/businesslogin/merchantjoin.jsp

网关地址:无需额外开发 注册后在官方后台获取支付代码即可嵌入网站中

程序参考文档:

特点:

1.        采用充值卡方式

2.        网汇通卡是中国邮政储蓄银行发行的一种不定额现金支付卡,可直接进行各种消费,如:充值财付通、充值手机、新浪邮箱续费、充值skype、购买Q币等。

用户可以直接到当地邮局购买网汇通卡,新版网汇通卡可以是1元到2000元之间的任意金额,精确到分,例如:你可以购买201.08元的网汇通卡

3.        必须要提供注册用户或者网汇通卡号;不支持直接网银支付;

4.        全国邮局均可购买网汇通充值卡

5.        无需额外开发支付接口等;

网汇通代码生成

5. 安付通(http://help.eachnet.com/help/escrow/ )

联系方式:

网关地址:

程序参考文档:

特点:

1. eBay易趣的支付工具;

2. 不提供对外接口,无法在网站中嵌入使用

6.网银(chinabank) http://www.chinabank.com.cn/

联系方式: http://www.chinabank.com.cn/gateway/about_us/contact/index.shtml

网关地址:

程序参考文档: 接口已经完成     附件网银.rar

特点:

1. 支持主流信用卡、借记卡 手续费为1% 其他全免

2.线下支付 报信用卡信息,随时随地支付货款支付过程

7. PayPal贝宝 http://www.paypal.com/

联系方式: https://www.paypal.com/us/cgi-bin/helpscr?cmd=_help&t=escalateTab

网关地址:

程序参考文档: 接口已经完成

8.ips环迅支付 http://www.ips.com.cn/

联系方式: http://www.ips.com.cn/contactus/xsrx.shtml

网关地址:

程序参考文档: 接口已经完成

9.财付通(https://www.tenpay.com/ )

联系方式: https://www.tenpay.com/zft/qa/qa_15.shtml

网关地址: https://www.tenpay.com/cgi-bin/med/show_opentrans.cgi

程序参考文档: 见附件财付通接口文档.doc

特点:

1.        支持国内18家银行

2.        提供手机话费直冲;即时到帐

3.        机票订购

4.        腾讯拍拍的购物支付方式;拥有大量使用人群;

5.        财付通账户余额支付

6.        自动扣款业务  参考: https://www.tenpay.com/zft/qa/qa_28.shtml

7.        免手续费自助集成 http://union.tenpay.com/mch/?posid=125&actid=84&opid=32&whoid=31

10.  NPS网上支付系统 http://www.nps.cn/

联系方式: http://www.nps.cn/contact/contact.jsp

网关地址: https://payment.nps.cn/ReceiveMerchantAction.do

程序参考文档: 见附件NPS支付系统接口

特点:

1.        支持国内银行支付

2.        支持国外银行支付

3.        支持神州行充值卡支付 http://www.nps.cn/product/payment_easyown.jsp

4.        支持电话支付 http://www.nps.cn/product/payment_phone.jsp

5.        商户可通过以下3种方式接入NPS支付平台:在线加盟业务联系代理商加盟

6.        接口类型: 1、购物车系统2、传款通系统3、直链行系统 4、神州行系统 5、外卡系统




附上下载地址

http://files.cnblogs.com/wsky/%e6%94%af%e4%bb%98%e6%8e%a5%e5%8f%a3%e6%90%9c%e9%9b%86%e6%96%87%e6%a1%a3%e4%bb%a5%e5%8f%8a%e9%99%84%e4%bb%b6.rar

转载请注明出处 :)

转载于:https://www.cnblogs.com/wsky/archive/2008/01/24/1052108.html

支付宝、微信等常用第三方支付接口费率介绍

当前第三方支付接口接入主要包含的支付模式有电脑网站支付、手机网站支付、APP支付等,各第三方支付公司的支付接口费率也趋于相同,一般行业费率在0.6%左右,游戏、娱乐等虚拟业务的费率为1%,下面就整理出常用支付接口费率(包括支付宝、微信、银联、京东支付、百度钱包、易宝支付等)供大家参考!

  支付宝支付接口费率:

产品名称应用场景接入费费率保证金
支付宝 APP 支付移动应用0元一般行业:0.6%,数娱/游戏/3C 数码:1.2%0元
支付宝手机网站支付移动网页0元一般行业:0.6%,数娱/游戏/3C 数码:1.2%0元
支付宝电脑网站支付PC 网页0元一般行业:0.6%,数娱/游戏/3C 数码:1.2%0元
支付宝当面付扫码0元一般行业:0.6%,数娱/游戏/3C 数码:1.2%0元
转账到支付宝账户企业付款(B2C/B2B)0元免费0元
支付宝批量付款企业付款(B2C/B2B)0元单笔费率:0.5%,最低1元,最高25元0元

  微信支付接口费率:

产品名称应用场景接入费费率保证金
微信 App 支付移动应用300元/年实物类:0.6%;虚拟类:1%0元
微信公众号支付微信公众号/扫码/企业付款/红包300元/年实物类:0.6%;虚拟类:1%0元
微信 Wap 支付移动网页300元/年实物类:0.6%;虚拟类:1%0元
微信小程序支付微信小程序300元/年实物类:0.6%;虚拟类:1%0元
微信企业付款企业付款(B2C)0元免费0元

  微信支付商户类目所对应的费率,详情可在「腾讯客服-微信支付商户专区」查看

  QQ钱包支付接口费率:

产品名称应用场景接入费费率保证金
QQ 钱包 App 支付移动应用0元实物类:0.6%;虚拟类:1%0元
QQ 钱包公众号支付QQ 公众号0元实物类:0.6%;虚拟类:1%0元            

  银联支付接口费率:

产品名称应用场景接入费费率保证金
银联手机支付移动应用/移动网页/微信公众号2000元(自行申请的以入网收单行为准)0.8%(自行申请的以入网收单行为准)0元
银联网关支付PC 网页2000元(以入网收单行为准)0.8%(以入网收单行为准)0元
企业网银PC 网页(B2B 收款)20000元(以入网收单行为准)15元/笔(以入网收单行为准)0元
银联电子代付企业付款(B2C/B2B)2000元(以入网收单行为准)1.5元/笔(以入网收单行为准)0元
Apple PayiOS app2000元0.8%(以入网收单行为准)0元

  京东支付接口费率:

产品名称应用场景接入费费率保证金
京东支付移动应用/移动网页/微信公众号/PC 网页0元0.7%(以协议为准)0元
京东白条移动应用/移动网页/微信公众号/PC 网页0元1%(以协议为准)0元
京东代付企业付款(B2C/B2B)0元2元/笔(以协议为准)0元

  通联代付接口费率:

产品名称应用场景接入费费率保证金
通联代付企业付款(B2C/B2B)0元2元/笔(以协议为准)0元

  百度钱包支付接口费率:

产品名称应用场景接入费费率保证金
百度钱包移动应用/移动网页/微信公众号0元0.6%0元

  易宝支付接口费率:

产品名称应用场景接入费费率保证金
易宝支付移动应用/移动网页/微信公众号0元0.6%按单日单卡交易限额收取(不足1W按1W收取)

附:微信支付接口费用与申请条件介绍

转自:https://blog.csdn.net/u014756827/article/details/102973298

老年期的变化与社会工作服务

一、 生理老化

学习活动1——生理老化小测验

  1. 艾滋病在老人中的传播速度比年轻人慢(×)
  2. 蓝色、紫罗兰色和绿色是老年人最难以区分的颜色(√)
  3. 对听力丧失的人来说,加大音量可能使问题更为严重(×):加大音量未必有用
  4. 皮肤中含油量会影响皱纹出现的早晚(√)
  5. 大多老人的痛觉阈限升高,年轻时能感觉得到的疼痛老了感觉不到(√)
  6. 缺乏锻炼或锻炼过度,容易导致骨质疏松(√)
  7. 三种最常见的抗氧化剂是维生素B、C、E(√)

二、生理老化的实践意义

儿童社会工作

《非暴力冲突》

儿童时期是人生发展的关键时期。为儿童提供必要的生存、发展、受保护和参与的机会和条件,最大限度地满足儿童的发展需要,发挥儿童潜能,姜维儿童医生的发展奠定重要基础。

证据为本的社会工作

非证据

临床观察、专家观点、个案研究。这些有可能是推测和研究假设的来源,会为未来的研究奠定基础。

其他影响决定的因素有什么?

  • 个人经验
  • 习惯、传统
  • 价值观
  • 资源
  • 他方压力:孩子服务(父母压力),老人服务(子女压力)
  • 务实考虑

研究质量评估标准

  • 测量工具的可信度
  • 测量工具的效度
  • 干预的保真度:尽量接近真实、原本
  • 缺失值与误差
  • 潜在的作用变量
    • 如做老人的防跌倒研究,可能跟季节、节日等因素有关
  • 数据分析的恰当性

推广准备

  • 推广材料的可用性
    • 如操作手册
  • 培训资源和支持资源的可用性
  • 质量保证程序的可用性

三、证据为本的社会工作实践与案例

- 提出具体的问题
- 寻找当前的最佳证据
如:思考课间孩子活动,什么样的活动利于他们,如球类运动,多长时间、多大强度、什么效果,等
- 客观评价证据
- 基于证据采取行动

案例1:社会工作防跌倒项目
• “爱自己 保命防跌“ ——长者防跌倒讲座

案例1延伸->研究发现

精神疾病的心理教育研究表明,这些教育能成功增加服务对象的有关心里疾病的专门知识,但却与解决疾病复发和再入院没有关系。其有助于服务对象的知情同意。

案例1延伸->增龄与平衡能力

平衡功能包含坐位、立位和移动平衡三方面。视觉、前庭、本体等平衡感觉功能是20~50岁间最稳定,随后逐渐减退,至70岁以后降低明显。

Lord的老年人重心平衡研究发现:随着年龄增大,平衡能力下降,摔倒

案例1延伸->老年防跌倒问题及发生率

欧美等国居住在社区饿的65岁以上的老人每年有30%~40%发生跌倒,长期生活在保健机构的老人有近半数的老人出现过跌倒;而日本和中国调查结果则低于20%。

案例1延伸->跌倒的影响

  • 造成骨折软组织甚至脏器的损伤
  • 心理或社会障碍
  • 降低生活质量
  • 增加家庭和社会的负担
  • 诱发老年人死亡

案例1延伸->跌倒的影响因素

  • 身体老化与疾病。如:骨质疏松症、糖尿病、脑卒中患者等。
  • 药物。如:降压药物、抗抑郁药物、镇静安眠药物。老人跌倒四成与服用的药物有关。
  • 环境。如:防滑、家具稳当并摆放适当、卫生间与楼梯扶手等。

(Tips:老博会)

评估方法:动态、静态、综合功能类平衡测试

被证明有效的干预方法

  • 职业治疗师家访
  • 奥塔哥(Otago)锻炼计划
  • 简化的太极拳

Otago家庭锻炼计划

进行了四组随机对照试验和一组多中心控制实验,是一个为个人定制的肌肉强化与平衡感在训练,再与不行相结合的锻炼计划。这个经过了广泛测试的跌倒预防方案现在已经在全世界实用。

结果显示:与没有参加这个计划的人比较,参与者跌倒的几率减少了35%。这个计划对男女同样有效。

案例2:失独家庭社会工作服务项目
• 关爱失独家庭项目
• 先后开展了志愿者结对、集体过生日、健康保健讲座等,为“失独”父母送上温暖。这一做法还得到推广,对更多失独老人开展“四个一“

失独影响

  • 失去孩子常被认为是个人所经历的最大的悲剧性的丧失。这样的结论过于简化而且也不正确。任何失去所爱的人都可能给人的身心和社会生活状态带来不可估量的终端。其影响取决于多哥因素,如跟趋势的人的关系、去世时的情形和当前的压力。
  • 失去唯一的孩子会导致个人成就和社会真实的父母角色的丧失,因此更难以调整适应。
  • 社会文化因素对丧亲后调试的影响。父亲母亲会不同。