VietMarine.Org - Diễn đàn Hàng Hải-Logistics
Bạn có muốn phản ứng với tin nhắn này? Vui lòng đăng ký diễn đàn trong một vài cú nhấp chuột hoặc đăng nhập để tiếp tục.
Latest topics
» Mở rộng 4rum đi!
Cách post bài có nhạc I_icon_minitimeWed Jul 08, 2009 10:44 pm by Admin

» Họp lớp hè 2009
Cách post bài có nhạc I_icon_minitimeWed Jul 08, 2009 10:37 pm by Admin

» thu tinh...
Cách post bài có nhạc I_icon_minitimeWed Jul 08, 2009 9:52 pm by rainjune

» Danh sách lớp
Cách post bài có nhạc I_icon_minitimeSat Jul 04, 2009 2:55 pm by Admin

» Thông tin chuyến đi đầm long-thiên sơn
Cách post bài có nhạc I_icon_minitimeTue Jun 30, 2009 11:26 pm by Admin

» bai van an tuong
Cách post bài có nhạc I_icon_minitimeSun Jun 28, 2009 6:03 pm by Admin

» Ai đi Hà Tây thì vào ghi tên để tớ còn đi hỏi tour
Cách post bài có nhạc I_icon_minitimeSun Jun 28, 2009 6:01 pm by Admin

» cau chuyen tinh yeu cam dong nhung cung sen' vl
Cách post bài có nhạc I_icon_minitimeWed Jun 17, 2009 6:11 pm by newbiz

» cau chuyen tinh yeu cam dong nhung cung sen' vl
Cách post bài có nhạc I_icon_minitimeTue Jun 16, 2009 6:31 pm by namhuyvuong1309

Lời hay ý đẹp
Truyện cười
Xem ngày

Cách post bài có nhạc

3 posters

Go down

Cách post bài có nhạc Empty Cách post bài có nhạc

Bài gửi by Admin Tue Jun 09, 2009 6:47 am

Tạo tài khoản tại http://www.nhaccuatui.com
chưa có thì lấy: user:ktb47dh2; pass: ktb47dh2
Chọn bài và add vào list nhạc
http://www.nhaccuatui.com/tim_kiem?type=nhactre
Vào list nhạc của mình copy code dán vào diễn đàn
Code:
<object width="300" height="400"><param name="movie" value="http://www.nhaccuatui.com/l/LIiCVnArscWw" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed src="http://www.nhaccuatui.com/l/LIiCVnArscWw" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="300" height="400"></embed></object>
hoặc
Code:
[flash]http://www.nhaccuatui.com/l/LIiCVnArscWw[/flash]

kết quả
Admin
Admin
Administrator
Administrator

Giới tính : Nam Tổng số bài gửi : 79
Điểm số : 16495
Cấp bậc : 1
Ngày tham gia : 25/05/2009
Đến từ : KTB47ĐH2

https://vantaibien.forum-viet.net

Về Đầu Trang Go down

Cách post bài có nhạc Empty Re: Cách post bài có nhạc

Bài gửi by quanghiep109 Tue Jun 09, 2009 9:21 am

cái ông ẹt min này. Cách post bài có nhạc 50690 .người ta hỏi post nhạc midi lại cứ đi giải thích cái j ếy:(
quanghiep109
quanghiep109
Thành viên tích cực
Thành viên tích cực

Giới tính : Nam Cầm tinh : Thìn

Tổng số bài gửi : 112
Điểm số : 16477
Cấp bậc : 1
Ngày sinh : 10/09/1988
Ngày tham gia : 29/05/2009
Tuổi : 35
Đến từ : Gốc cây thứ 3 phố xây dựng
Sở thích : Chọc gậy bánh xe
Nghề nghiệp : Ném đá giấu tay

Về Đầu Trang Go down

Cách post bài có nhạc Empty Re: Cách post bài có nhạc

Bài gửi by Admin Tue Jun 09, 2009 11:22 am

cái ông ẹt min này .người ta hỏi post nhạc midi lại cứ đi giải thích cái j ếy

Nhac midi hay nhạc gì, tạo list nhạc... mà chả thế, up vào accout của trang trên, nó tự tạo code rồi dán nó vào diễn đàn thế là xong Cách post bài có nhạc 197445
Muốn làm nhạc nền thì tham khảo tutorial dưới đây





Background
music



Time to time if you want to make your forum more attractive then
you can think about adding some nice background music to it. However
please don't forget that html background music needs more bandwidth. The
usually used mp3 files are small compared to .wav files, but even so
much bigger then a normal html page. The W3C not approved
. Besides this it can annoying peoples, even if you make
it possible to control the sound. After this introduction let's make
some work.
Using HTML background music is not a complicated
task. You just need to select a sound file. It can be mp3, wav, mid but
don't forget that is should be as small as possible. After you have the
music it's time to integrate it into your html document. To do this we
need to use the html tag. The tag inserts a
browser plugin into your webpage. This plugin is installed on the
client machine.
It's time to see a basic html background music integration. Here is a code
which plays your sound:



Code:



Code:
<body>
<p>Background
Music</p>
<embed
src="bgsound.mp3" autostart="true">
</body>







This code simply plays the given .mp3 file as the page is loaded.
However if the file ends the music will stop, so you maybe want to set
to play music in a loop. Of course you can do this by the loop
parameter and as result your code will look like this:



Code:



Code:

<embed
src="bgsound.mp3" autostart="true"
loop="true"> 


You can also control the size of the browser plugin like this:



Code:




Code:
 <embed
src="bgsound.mp3" autostart="true" width="400"
height="20"> 



It's nice that with this solution the visitor can control the
background music, but it destroys your page design. So you maybe want
to hide the control panel of the browser plugin. In case of tag
you can also use the hidden parameter as follows:



Code:



Code:
<embed
src="bgsound.mp3" autostart="true" loop="true"
hidden="true"> 


At the end once again be careful when to use html background music.
Admin
Admin
Administrator
Administrator

Giới tính : Nam Tổng số bài gửi : 79
Điểm số : 16495
Cấp bậc : 1
Ngày tham gia : 25/05/2009
Đến từ : KTB47ĐH2

https://vantaibien.forum-viet.net

Về Đầu Trang Go down

Cách post bài có nhạc Empty Re: Cách post bài có nhạc

Bài gửi by M&S Sun Jun 14, 2009 6:07 pm

có bài nghe hay lắm, mún post mà cai 4rum nay` chả post được nhạc j` cả.
M&S
M&S
Thành viên tích cực
Thành viên tích cực

Giới tính : Nữ Cầm tinh : Thìn

Tổng số bài gửi : 66
Điểm số : 16430
Cấp bậc : 1
Ngày sinh : 21/12/1988
Ngày tham gia : 28/05/2009
Tuổi : 35
Đến từ : sao hoả
Sở thích : ăn cơm mắm nói chuyện thế giới
Nghề nghiệp : tề gia trị quốc bình thiên hạ...

Về Đầu Trang Go down

Cách post bài có nhạc Empty Re: Cách post bài có nhạc

Bài gửi by Sponsored content


Sponsored content


Về Đầu Trang Go down

Về Đầu Trang

- Similar topics

 
Permissions in this forum:
Bạn không có quyền trả lời bài viết