Skip to content

Commit e8c8c06

Browse files
committed
translate task
1 parent fe97762 commit e8c8c06

File tree

1 file changed

+5
-5
lines changed
  • 2-ui/1-document/08-styles-and-classes/2-create-notification

1 file changed

+5
-5
lines changed

Diff for: 2-ui/1-document/08-styles-and-classes/2-create-notification/task.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ importance: 5
22

33
---
44

5-
# Create a notification
5+
# নোটিফিকেশন তৈরি
66

7-
Write a function `showNotification(options)` that creates a notification: `<div class="notification">` with the given content. The notification should automatically disappear after 1.5 seconds.
7+
`showNotification(options)` নামের একটি ফাংশন লিখুন যা একটি নোটিফিকেশন দেখাবে: `<div class="notification">`। নোটিফিকেশনটি ১.৫ সেকেন্ড পর অদৃশ্য হবে।
88

9-
The options are:
9+
options হবে:
1010

1111
```js
12-
// shows an element with the text "Hello" near the right-top of the window
12+
// "Hello" টেক্সট সহকারে একটি এলিমেন্ট দেখাবে window এর উপরের ডান কোণায়
1313
showNotification({
1414
top: 10, // 10px from the top of the window (by default 0px)
1515
right: 10, // 10px from the right edge of the window (by default 0px)
@@ -21,4 +21,4 @@ showNotification({
2121
[demo src="solution"]
2222

2323

24-
Use CSS positioning to show the element at given top/right coordinates. The source document has the necessary styles.
24+
CSS পজিশনিং স্ট্যাইল ব্যবহার করুন top/right এর জন্য।

0 commit comments

Comments
 (0)