documentation translation: cordova-plugin-vibration
Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/commit/7850d8b4 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/tree/7850d8b4 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/diff/7850d8b4 Branch: refs/heads/master Commit: 7850d8b4147961abd4536563c09d7098b5339ba2 Parents: 02aa38d Author: ldeluca <[email protected]> Authored: Tue May 27 21:37:07 2014 -0400 Committer: ldeluca <[email protected]> Committed: Tue May 27 21:37:07 2014 -0400 ---------------------------------------------------------------------- doc/de/index.md | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/blob/7850d8b4/doc/de/index.md ---------------------------------------------------------------------- diff --git a/doc/de/index.md b/doc/de/index.md new file mode 100644 index 0000000..bd00a7c --- /dev/null +++ b/doc/de/index.md @@ -0,0 +1,58 @@ +<!--- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> + +# org.apache.cordova.vibration + +Dieses Plugin bietet eine Möglichkeit, das Gerät zu vibrieren. + +## Installation + + cordova plugin add org.apache.cordova.vibration + + +## Unterstützte Plattformen + +* Amazon Fire OS +* Android +* BlackBerry 10 +* Firefox OS +* iOS +* Windows Phone 7 und 8 + +## Notification.Vibrate + +Vibriert das Gerät für den angegebenen Zeitraum. + + navigator.notification.vibrate(time) + + +* **Zeit**: Millisekunden das Gerät vibriert. *(Anzahl)* + +## Beispiel + + // Vibrate for 2.5 seconds + navigator.notification.vibrate(2500); + + +## iOS Macken + +* **Zeit**: ignoriert die angegebene Zeit und für eine voreingestellte Zeit vibriert. + + navigator.notification.vibrate(); + navigator.notification.vibrate(2500); // 2500 is ignored \ No newline at end of file
