Мой Сайт
Главная
Направление
Web-программирование
Новости
Цвет:
Желтый
Зеленый
Синий
Размер:
100
250
500
jQuery(function ($) { $("#yellow").click(function () { $("#yellowcontent").show(); $(".circle").css("background-color", "yellow"); }); $("#green").click(function () { $("#greencontent").show(); $(".circle").css("background-color", "green"); }); $("#blue").click(function () { $("#bluecontent").show(); $(".circle").css("background-color", "blue"); }); $("#100").click(function () { $("#100content").show(); $(".circle").css("width", "100px"); $(".circle").css("height", "100px"); }); $("#250").click(function () { $("#250content").show(); $(".circle").css("width", "250px"); $(".circle").css("height", "250px"); }); $("#500").click(function () { $("#500content").show(); $(".circle").css("width", "500px"); $(".circle").css("height", "500px"); }); });
.circle { width: 300px; height: 300px; text-align: center; border-radius: 50%; border: 1px solid black; background-color: red; }
Results:
Цвет:
Желтый
Зеленый
Синий
Размер:
100
250
500