SELAMAT DATANG DI BLOG ANDRA PRATAMA

Minggu, 26 Desember 2010

Unit 12. Unit 13 Working with Layers

Posted by Andra pratama 16.37, under | No comments

Unit 12. Working with Layers

We're going to a look at some of the characteristics of layers, and then work with them and apply some behaviors to them.
Introduction
 
Layers are squares that can be placed wherever you want in the Page, we can insert HTML content in them. Those layers can be hidden and overlapped between them. This gives you a great variety to design.
Layers can be moved from their positions by just clicking on the the white square in its lerft top corner, and whilst keeping the mouse pressed, dragging it to the new position.
They can also can be resized by clicking on the black squares and dragging them until the size you want is reached.
You can insert text, tables, images, and flash animations inside the layer's square, and also all the elements that an HTML file can contain.
This icon is used to select the layer when you click on it, and when you clear it, you are also clearing the layer.

Inserting a layer
Layers can be inserted in a Page through the Insert menu, and then selecting the Design object option, and Layer.
Once the layer is inserted, you can edit its attributes by selecting it.
You can select layers through many different ways. One of them is clicking on the icon. This is not useful when there are many layers in the same file because all layers have an image like this one associated, and it's very easy to select the wrong one.
When there are many layers in the same file, it's recommendable to select them through the Layers tab in the Design panel, which can be opened through the Window menu, and then the Layers option. If the Layers option isn't in the menu, it may possibly be in the Others option. Also, it can be opened just by pressing F2.
In the panel are the names of all existing layers in the actual file, and you only need to click on the layer name to select it.

Layer format
 
Layer's properties are shown through its properties inspector
Layer ID is the layer's name. You can change it through the Layers panel, and double-clicking it.
L and T indicate the pixels distance between left and top limits of the document and the layer.
W and H indicate the layer's width and the height.
Z-Index is the depth order of the layer. This value can be changed through the Layers panel. A layer will be overlapped by others which greater Z-index.
Vis indicates the inital view of the layer. Visibility can accept four types.
Default (Browser view),
Inherit (the layer of the Page that is being displayed is shown)
Visible (It shows the layer although the Page isn't being seen)
Hidden (the layer is hidden).
You can also change the view through the Layers panel by clicking on the eye image. The open eye indicates Visible, and the closed eye indicates Hidden.
Through Bg Image and Color you can indicate an image or a background color for the layer.
Overflow controls how the layers appear in a browser when the content exceeds the specified size of the layer.
Visible indicates that the layer would be amplified to make its content fit.
Hidden specifies the additional content will not be shown in the browser.
Scroll specifies that the browser should add scrolling bars to the layer although they are or not needed.
Auto makes the browser show the scrolling bar when they are needed (when the layer content is bigger than its limit).
To practice you can perform the Step by step exercise on Inserting a Layer. 

Unit 13. Using behaviors (I)

In this unit we're going to learn the basic characteristics of the behaviors, and also look at a pair of examples of possible applications.
Introduction
 
behaviors are actions that happen when the userdoes something over an object, for example moving the mouse over an image, clicking on a text, double-clicking on an image map, etc.
behaviors don't exist as HTML code, they are programmed with JavaScript. Dreamweaver allows you to insert them through the Behaviors panel, so it is not necessary to write a JavaScript code line to program them.
The image below has a behavior associated. Place the mouse over it to see what happen.


The image has two behaviors associated to show and hide the layer. We'll look at this kind of behavior later.
Other behaviors you have seen are the ones applied to sustitution bars and browser bars, they are predefined, and for this reason it isn't necessary to introduce the set of behaviors through Behavior panel.
To validate forms you saw some of the caracteristics of Behavior panel. Let's remember which we need to insert behaviors later.
The Behavior panel can be opened through the Window menu, and then the Behaviors option, also by pressing Shift+F3.
In this panel you need to click on the button, and in Show events for selecting a version from the browser list.
Some behaviors don't work with some browsers. Depending on the selected browser, you will see or not some of the possible behaviors.
There are many behaviors for Internet Explorer but they don't work with Netscape. As most users use Internet Explorer, let's select this browser. You can select from one of its latest versions: IE 5.5 o IE 6.0.
Once the browser is selected it's not necessary to re-select it the following time you want to insert any behavior.


Inserting a behavior
 
When there is an established browser, you can insert behaviors.
The first thing to do is to select the object on which the behavior is going to be applied, it can be an image, a text fragment, etc.
When you click on the button of the Behavior panel you will see the Show Events for option. Also, you will see a list of all possible actions in the browser previously selected, so you can select one.
Depending on the element on which you want to apply the behaviuor, you can select some actions, and others not.


In this case the Validate form action cannot be selected because there isn't any form in the Page.
After choosing any action, the corresponding behavior appears in the Behaviors panel. In this case, two behaviors have been inserted.
As you can see, each behavior has an action and an event associated to it.
Actions are the ones which have been selected in the previous list, and the event indicates the action by itself (when it is done).
To clear any behavior, you need to select it in the Behaviors panel and click on the button. You can also change the order of the behaviors applied to an object, by selecting them and arranging their order through the buttons.


Unit 13. Using Behaviors (II)

Show and Hide layer behavior
One of the most habitual and interesting behaviors is Show and Hide layers. It is obvious that when you want to apply this behavior there need to be layers present in the document.
In the previous Page you had an example of this type. Let's see which events and actions you need to establish in order to produce the behavior.
After selecting the image you need to select an action from the list by clicking on the button. In this case the action has to be Show-Hide layers
After selecting the action, you must specify which layers have to be shown and which hidden for the event. For this you need to click twice on the action in the Behavior panel.
A new window is then shown, with the list of all the layers in the page, where you can indicate the view variation for each one of the layers.

You can indicate whether they are going to be Shown, Hidden, or if they are going to acquire the initial view (Predetermined).
To determine the state of each one of the layers it's necessary to select them one by one, indicating the state through the buttons at the bottom of the window.

It's not necessary to apply a different view to all the layers of the page, only the ones you want to change at the moment of producing the event. For example, in this case the "catmonth" layer has not been applied a different view, because we don't want it to change when the event plays out.
If you want to clear an established view for any of the layers, you only need to click again on the button of the applied view. For example, to clear the view applied to the "catweek" layer, we would have to click again on the Show button.
You need to be careful about what you want - in this case it is that when you place the mouse on the image the layer is shown, and when the mouse is out of the image the layer is hidden again. For this you need to insert two Show-Hide layers behaviors with the action. One of them will show the layer for the event onMouseOver (when the mouse is over), while the other will hide it for the event onMouseOut (when the mouse is out).

Using JavaScript Code
 
Another behavior that can be applied on any object is Call JavaScript. This behavior allows us to insert JavaScript code inside the file.
For example, it's possible to make the browser window close when you click on an object. To do this you need to insert a "window.close();" JavaScript line.
The same as the layers example, the first thing to do is to select the object on which the behavior is going to be applied. After this you need to select the Call JavaScript action through the button.
Then a new window shows up and you now need to introduce the JavaScript line.
Once the behavior is inserted in the Behavior panel, you need to establish an onclick event to produce the call to JavaScript when clicking on the object.
By clicking twice on the action the previous window is opened again, and it's possible to modify the line code.
To practice you can perform the Step by step exercise on Inserting behaviors

0 komentar:

Cara Membuat Teks Berjalan dan Berkedip di Blog WordPress, Blogspot, Joomla dan Blog Yang Lain

Mungkin file tutorial ini sudah tak asing lagi bagi para peblogger yang sudah malang melintang dalam menjelajah dan mengubek-ubek blognya. Tapi mungkin juga ada yang belum tahu mengenai tutorial sederhana tentang cara membuat teks berjalan dan berkedip pada blog wordpress, blogspot, joomla ataupun pada blog dengan css yang lain.

Cara ini juga berlaku pada website dengan design sendiri yang berformat html. Teks berjalan dan berkedip pada bahasa html disebut dengan marquee behavior. Nah, kalau teman-teman mencari arti kata marquee di kamus, maka artinya akan lain yaitu “tenda besar”. Pastinya nggak nyambung kan..

Tidak panjang lebar, berikut tutorial cara membuat teks berjalan dan berkedip pada blog wordpress, joomla, blogspot, dan blog yang lain :

1. Marquee 1.0.0

Membuat teks berjalan dan berkedip

Marquee 1.0 ini merupakan marquee behavior standar agar teks anda bisa berjalan secara default (dari kanan ke kiri).

Tag HTML membuat teks berjalan marquee 1.0.0 :

Teks Anda

2. Marquee 1.0.1

Membuat teks berjalan dan berkedip

Marquee 1.0.1 adalah pengembangan dari marquee 1.0.0, Marquee ini mempunyai kelebihan jika anda arahkan mouse pada teks tersebut maka dia akan istirahat atau berhenti.

Tag HTML membuat teks berjalan marquee 1.0.1 :

Teks Anda

3. Marquee 1.0.2

Membuat teks berjalan dan berkedip

Teks dengan marquee 1.0.2 ini maka akan berjalan sebaliknya yaitu dari kiri ke kanan.

Tag HTML membuat teks berjalan marquee 1.0.2 :

Teks Anda

4. Marquee 2.0.o

Membuat teks berjalan dan berkedip

Marquee 2.0.0 ini mempunyai kelebihan bolak-balik dari ruang kotak yang tidak terlihat oleh mata.

Tag HTML membuat teks berjalan marquee 2.0.0 :

Teks Anda

5. Marquee 2.0.1

Membuat teks berjalan dan berkedip

Marquee 2.0.1 adalah pengembangan dari marquee sebelumnya, dengan pancingan scrollamount dia menjadi sangat agresif/cepat.

Tag HTML membuat teks berjalan marquee 2.0.1 :

Teks Anda

6. Marquee 2.0.2

Membuat teks berjalan dan berkedip

Marquee 2.0.2 masih pengembangan dari Marquee 2.0 dengan sentuhan on-mouse-over stop dan on-mouse-out start, seperti marquee 1.0.1 yaitu jika anda arahkan mouse pada teks tersebut maka dia akan berhenti.

Tag HTML membuat teks berjalan marquee 2.0.2 :

Teks Anda

7. Marquee 3.0.0

Membuat teks berjalan dan berkedip

Marquee 3.0.0 adalah marquee climbing, marquee pendaki ini suka sekali ketinggian, sehingga kita lihat arah teksnya pun ke atas. Jika Anda memiliki teks yang banyak, maka marquee ini merupakan pilihan yang tepat dan sangat cocok.

Tag HTML membuat teks berjalan marquee 3.0.0 :

Teks Anda

8 Marquee 3.0.1

Membuat teks berjalan dan berkedip

Marquee 3.0.1 adalah pengembangan dari marquee sebelumnya yang tidak mempunyai batas ruang, marquee ini kita batasi ruang kasatnya sehingga memiliki height 100 saja. Demikian dengan kemampuan scrollamountnya kita perlambat. Dan kita tambahkan on mouse stop/start juga.

Tag HTML membuat teks berjalan marquee 3.0.1 :

Teks Anda

9. Marquee 3.0.2

Membuat teks berjalan dan berkedip

Marquee 3.0.2 masih merupakan pengembangan dari marquee sebelumnya, hanya saja teks berada di tengah ruang kasat.

Tag HTML membuat teks berjalan marquee 3.0.2 :

Teks Anda

10. Marquee 3.0.3

Membuat teks berjalan dan berkedip

Marquee 3.0.3 adalah pengembangan juga dengan arah berlawanan dari marquee sebelumnya. kelebihan marquee ini yaitu teks bisa berjalan menurun atau teks yang kita lihat berjalan dari atas ke bawah. Kemampuan scrollamountnya tidak kita batasi sehingga terlihat agresif dengan ruang kasat yang kecil. Bisa diperlambat dengan format html seperti diatas.

Tag HTML membuat teks berjalan marquee 3.0.3 :

Teks Anda

11. Membuat teks berkedip

Membuat teks berjalan dan berkedip

Untuk membuat teks berkedip seperti diatas sangat mudah dan simple. Tambahkan saja format html seperti dibawah ini :

Tag HTML membuat teks berkedip :

Teks anda

Diatas adalah tutorial sederhana dalam membuat teks berjalan dan berkedip pada blog wordpress, blogspot, joomla ataupun blog yang lain. Semoga bermanfaat..

Sebuah cerita Blogger andra

membuat tulisan/teks berjalan

Apa seh maksudya??pasti kalian pada bingung ya??ok anda bisa melihat Teks yang ada di sini maksdku di blogger ini liat teks yang berjalan persisnya di paling atas sendiri tepatnya di kotak iklan itu lo???saya hanya ingin memberikan sedikit informasi saja, mungkin beberapa blogger sudah mengetahui sebelumnya. tapi ngga apa-apa kan kalau saya share lagi sama blogger yang belum tahu, yaitu membuat text berjalan yang sering disebut-sebut text marquee yang tulisannya bisabergerak kekanan, kekiri atau keatas dan kebawah.

Sebenarnya untuk membuat efek ini tidaklah sulit karena kita tidak memerlukan keahlian HTML yang tinggi. dalam kesempatan ini saya akan membagi tentang cara pembuatan efek tulisan berjalan seperti yang ada pada blok-blok lain biasanya disebut marquee. Efek inipun ada bermacam macam.Anda tidak hanya bisa membuat tulisan berjalan kekiri tapi andapun bisa membuat tulisan berjalan kebawah dan keatas…baiklah saya akan langsung membantu anda bagaimana cara membuat efek seperti ini.
Yang perlu anda lakukan adalah menyalin script ini ke HTML blog anda

Andra pratama

Tulisan yang Hitam itu bisa anda rubah sbb:
- Arah bergerak text bisa anda tulis : ke kiri (left), ke kanan(right), ke atas (up) dan ke bawah (down)

cara pasangnya adalah sebagai berikut1.silahkan anda login diblogger and,tentunya pake ID anda senderi

2.kalau udah masuk bagian dasbor

3.klik tombol Tampilan

4. habis itu Klik tombol Widget letaknya persis di tombol tema

5.Setelah masuk bagian Penyusunan Sidebar

cari

Sindebar bagian TEKS terserah mau pake teks 1-10

habis itu silahkan klik sidebar TEKS tadi dan masukan kode yang anda dapatkan tadi

6.simpan

7.selamat anda sudah belajar dari saya

catatan..trik memakai teks berjalan seperti ini sangat efektif jika kita ingin tulisan kita bisa di lirik oleh pembaca.karena tulisan yang bergerak seperti ini lebih menarik mata pembaca daripada teks yang diam..semoga bermanfaat… ya….

Facebook Bakal Ditutup?

Kabar mengejutkan datang dari Facebook. Jejaring sosial terbesar di muka bumi ini diberitakan bakal segera ditutup dalam waktu dua bulan lagi oleh sang pemiliknya, Mark Zuckerberg.

Seperti dikutip dari weeklyworldnews.com, Minggu (9/1/2011), riwayat Facebook yang memiliki 500 juta pengguna di seluruh dunia ini akan segera berakhir pada 15 Maret 2011 mendatang.

“Facebook sudah benar-benar kebablasan, saya harus mengakhiri semua kegilaan ini. Segala tekanan saat mengelola perusahaan ini telah menghancurkan hidupku,” demikian pernyataan Zuckerberg seperti diklaim weeklyworldnews.com.

Pernyataan Zuckerberg konon diperkuat oleh Avrat Humarthi, vice president Technical Affairs Facebook. “Setelah 15 Maret, semuanya akan kami tutup. Jika Anda ingin melihat kembali foto-foto Anda, kami sarankan segera unduh dari internet. Anda tak akan bisa lagi mengambilnya begitu Facebook kami tutup,” begitu katanya.

Masih menurut klaim situs tersebut, Zuckerberg menilai keputusannya menutup Facebook sangatlah berat. Namun ia merasa itu jalan yang terbaik bagi semua orang.

“Sejujurnya, ini cara yang terbaik. Tanpa Facebook, orang-orang akan pergi ke luar dan menjalin pertemanan yang sesungguhnya. Itu selalu menjadi hal yang baik,” katanya.

Hingga saat ini, cuma situs weeklyworldnews.com yang menulis berita tentang bakal ditutupnya Facebook. Tidak ada media resmi yang memberitakan, sebab situs weeklyworldnews.com ini hanya situs parodi belaka. Isinya jauh dari kebenaran.

Sayuran dan buah terbesar yang pernah tumbuh

Dibaca Kali

Singkong
sayuran buah terbesar
Petani Lebanon Semhat Khalil, dari selatan kota Tyre, hampir tidak percaya ketika panen di kebun ketela miliknya dan menemukan salah satu hasil panennya adalah singkong raksasa dengan berat 11,3kg (24,9pounds).

Buah sumsum
sayuran  buah terbesar
Buah Sumsum terbesar di dunia (113 Lbs atau 65 Kg). Dikembangbiakkan oleh Ken Dade di Norfolk, beratnya mencapai 65kg. Sayur ini butuh 2 orang untuk mengangkatnya. Ini memecahkan rekor sebelumnya yang hanya 3kg.

Nangka
sayuran  buah terbesar
Nangka terberat di dunia (76 Lbs atau 34,4 Kg) Buah manis ini beratnya 34,6kg, dengan ukuran mencapai panjang 57,46cm dan keliling 121,28cm pada 8 Agustus 2003. Dikembangkan oleh George dan Margaret Schattauer dari Captain Cook, Hawaii, USA.

Kubis
sayuran  buah terbesar
Kubis terbesar di dunia (76 Lbs atau 34,4 Kg) John Evans, seorang desainer mekanik yang tinggal 40 mil di utara Anchorage di Palmer, Alaska, memegang 7 rekor dunia untuk sayuran raksasa. Salah satunya adalah kubis ini, memiliki bobot yang lebih dari 34kg membuat sayur ini mencetak rekor tahun 1998.

Semangka
sayuran buah terbesar
Semangka terbesar di dunia (268,8 Lbs atau 122 Kg) memiliki bobot 122kg membuat buah ini menjadi semangka terbesar di dunia. Semangka ini tumbuh di ladang milik Lloyd, keluarganya mempunyai sejarah yang panjang dengan semangka mereka. Pernah memecahkan rekor dunia pada tahun 1979 dengan semangka seberat 200kg.

Wortel
sayuran buah terbesar
Wortel terberat di dunia (18,9 Lbs atau 8,5 Kg) ditanam oleh John Evans pada tahun 1998, dengan berat 8,61kg, ini adalah wortel terberat yang pernah ada.

Labu
sayuran buah terbesar
Labu paling besar di dunia (1689 Lbs atau 766 Kg) tumbuh di Rhode Island, terbesar di dunia adalah labu yang ditampilkan di Topsfield dari Massachusetts pada 2007, beratnya 766kg.

Mentimun
sayuran buah terbesar
Mentimun terbesar (36,1 atau 0,9 MTs) dengan panjang 36,1in, mentimun ini memecahkan rekornya sendiri sebelumnya yang 35,1in di Bath, barat daya Inggris.

Bunga kol
sayuran buah terbesar
Bunga kol terbesar di dunia (31,25 Lbs atau 14,1 Kg) ditanam oleh Evans, bunga kol terbesar di dunia dengan berat 14,1kg pada tahun 1997.

Brokoli
sayuran  buah terbesar
Brokoli terbesar di dunia (35 Lbs atau 15,8 Kg) juga ditanam oleh Evans, pada tahun 1993 brokoli ini memecahkan rekor dunia dengan berat 15,8kg.

13 Resiko Fatal Penggunaan Ponsel Terus-menerus

Dibaca Kali
http://static.inilah.com/data/berita/foto/51549.jpg
Tidak bisa dipungkiri bahwa telepon seluler (ponsel) telah banyak menghadirkan berbagai kemudahan dalam hidup manusia. Meski banyak diperdebatkan, banyak kalangan khawatir akan dampak negatif dari radiasi yang ditimbulkan.
Penelitian terbesar yang pernah dilakukan tentang bahaya ponsel telah membantah adanya risiko kanker otak pada penggguna ponsel. Penelitian yang dilakukan sendiri oleh organisasi kesehatan dunia (WHO) tersebut menunjukkan risikonya tidak terlalu besar untuk dikhawatirkan.

Namun penelitian terbaru di India kembali menegaskan adanya ancaman kanker terutama pada anak dan remaja. Sang peneliti, Prof Girish Kumar bahkan mengatakan bahaya radiasi juga terdapat di sekitar menara Base Transceiver Station (BTS).
"Satu BTS bisa memancarkan daya 50-100W. Negara yang punya banyak operator seluler seperti India bisa terpapar daya hingga 200-400W. Radiasinya tak bisa dianggap remeh, bisa sangat mematikan," ungkap Prof Kumar.

Dikutip dari DNAindia, berikut ini sejumlah dampak negatif yang bisa ditimbulkan akibat radiasi yang berlebihan dari ponsel dan menara BTS:

1. Risiko kanker otak pada anak-anak dan remaja meningkat 400 persen akibat penggunaan ponsel. Makin muda usia pengguna, makin besar dampak yang ditimbulkan oleh radiasi ponsel.
2. Bukan hanya pada anak dan remaja, pada orang dewasa radiasi ponsel juga berbahaya. Penggunaan ponsel 30 menit/hari selama 10 tahun dapat meningkatkan risiko kanker otak dan acoustic neuroma (sejenis tumor otak yang bisa menyebabkan tuli).
3. Radiasi ponsel juga berbahaya bagi kesuburan pria. Menurut penelitian, penggunaan ponsel yang berlebihan bisa menurunkan jumlah sperma hingga 30 persen.
4. Frekuensi radio pada ponsel bisa menyebabkan perubahan pada DNA manusia dan membentuk radikal bebas di dalam tubuh. Radikal bebas merupakan karsinogen atau senyawa yang dapat memicu kanker.
5. Frekuensi radio pada ponsel juga mempengaruhi kinerja alat-alat penunjang kehidupan (live saving gadget) seperti alat pacu jantung. Akibatnya bisa meningkatkan risiko kematian mendadak.
6. Sebuah penelitian membuktikan produksi homon stres kortisol meningkat pada penggunaan ponsel dalam durasi yang panjang. Peningkatan kadar stres merupakan salah satu bentuk respons penolakan tubuh terhadap hal-hal yang membahayakan kesehatan.
7. Medan elektromagnet di sekitar menara BTS dapat menurunkan sistem kekebalan tubuh. Akibatnya tubuh lebih sering mengalami reaksi alergi seperti ruam dan gatal-gatal.
8. Penggunaan ponsel lebih dari 30 menit/hari selama 4 tahun bisa memicu hilang pendengaran (tuli). Radiasi ponsel yang terus menerus bisa memicu tinnitus (telinga berdenging) dan kerusakan sel rambut yang merupakan sensor audio pada organ pendengaran.
9. Akibat pemakaian ponsel yang berlebihan, frekuensi radio yang digunakan (900 MHz, 1800 MHz and 2450 MHz) dapat meningkatkan temperatur di lapisan mata sehingga memicu kerusakan kornea.
10. Emisi dan radiasi ponsel bisa menurunkan kekebalan tubuh karena mengurangi produksi melatonin. Dalam jangka panjang, kondisi ini dapat mempengaruhi kesehatan tulang dan persendian serta memicu rematik.
11. Risiko kanker di kelenjar air ludah meningkat akibat penggunaan ponsel secara berlebihan.
12. Medan magnetik di sekitar ponsel yang menyala bisa memicu kerusakan sistem syaraf yang berdampak pada gangguan tidur. Dalam jangka panjang kerusakan itu dapat mempercepat kepikunan.
13. Medan elektromagnetik di sekitar BTS juga berdampak pada lingkungan hidup. Burung dan lebah menjadi sering mengalami disorientasi atau kehilangan arah sehingga mudah stres karena tidak bisa menemukan arah pulang menuju ke sarang.

Tags

Timer

Populer