110 lines
2.0 KiB
JavaScript
110 lines
2.0 KiB
JavaScript
$(function () {
|
|
$.fn.raty.defaults.path = "../../dist/images/rating/";
|
|
|
|
// Default
|
|
$("#default-star-rating").raty();
|
|
|
|
// Default Score
|
|
$("#score-rating").raty({
|
|
score: 3,
|
|
});
|
|
|
|
// Number of stars
|
|
$("#no-of-stars").raty({
|
|
number: 10,
|
|
});
|
|
|
|
// Maximum number of stars
|
|
$("#max-number-stars").raty({
|
|
numberMax: 5,
|
|
number: 100,
|
|
});
|
|
|
|
// Read Only
|
|
$("#read-only-stars").raty({
|
|
readOnly: true,
|
|
score: 3,
|
|
});
|
|
|
|
// No Rated Message
|
|
$("#no-rated-msg").raty({
|
|
half: true,
|
|
readOnly: true,
|
|
});
|
|
|
|
// Cancel Star
|
|
$("#cancel-star").raty({
|
|
cancel: true,
|
|
});
|
|
|
|
// Space
|
|
$("#space-star").raty({
|
|
space: false,
|
|
});
|
|
|
|
// Single
|
|
$("#single-star").raty({
|
|
single: true,
|
|
});
|
|
|
|
// Half Star
|
|
$("#half-star").raty({
|
|
half: true,
|
|
});
|
|
|
|
// Star Half
|
|
$("#star-half").raty({
|
|
half: true,
|
|
starHalf: "star-half-mono.png",
|
|
});
|
|
|
|
// Round Enabled
|
|
$("#round-enabled").raty({
|
|
score: 3.26,
|
|
});
|
|
|
|
// Round Disabled
|
|
$("#round-disabled").raty({
|
|
halfShow: false,
|
|
score: 3.26,
|
|
});
|
|
|
|
// Custom Icon
|
|
$("#custom-icon-star").raty({
|
|
starOff: "heart.png",
|
|
starOn: "like.png",
|
|
});
|
|
|
|
// Icon Range
|
|
$("#icon-range").raty({
|
|
iconRange: [
|
|
{
|
|
range: 1,
|
|
on: "ti ti-cloud-rain fs-7",
|
|
off: "ti ti-cloud fs-7",
|
|
},
|
|
{
|
|
range: 2,
|
|
on: "ti ti-cloud-rain fs-7",
|
|
off: "ti ti-cloud fs-7",
|
|
},
|
|
{
|
|
range: 3,
|
|
on: "ti ti-cloud-rain fs-7",
|
|
off: "ti ti-cloud fs-7",
|
|
},
|
|
{
|
|
range: 4,
|
|
on: "ti ti-cloud-rain fs-7",
|
|
off: "ti ti-cloud fs-7",
|
|
},
|
|
{
|
|
range: 5,
|
|
on: "ti ti-cloud-rain fs-7",
|
|
off: "ti ti-cloud fs-7",
|
|
},
|
|
],
|
|
starType: "i",
|
|
});
|
|
});
|
|
|